Heroku one-click deploy
All checks were successful
continuous-integration/drone/push Build is passing

Including work around for Heroku's broken interpretation of entrypoint
This commit is contained in:
2021-11-21 21:47:03 +01:00
parent 6ec3fb47d1
commit 577e5b4afe
4 changed files with 26 additions and 4 deletions

View File

@@ -7,4 +7,5 @@ RUN pip3 install --no-cache-dir /app[full] gunicorn
USER 1000:1000
ENTRYPOINT ["/app/docker-entry.sh"]
ENTRYPOINT ["/bin/sh", "/app/docker-entry.sh"]
CMD ["run"]