use puma directly in Dockerfile
All checks were successful
Gitea Actions Demo / lint (push) Successful in 22s
Gitea Actions Demo / test (push) Successful in 11s
Gitea Actions Demo / docker (push) Successful in 2m3s

This commit is contained in:
Ryan Cavicchioni 2025-04-20 12:45:26 -05:00
parent c068eacf58
commit 69c6b30255
Signed by: ryanc
SSH Key Fingerprint: SHA256:KbXiwUnZnHFwFtt3Bytd+F3FN9pPHn1Z1cxMIE1TPbg

View File

@ -39,4 +39,4 @@ COPY --from=build --chown=app:app /app /app
COPY --chown=app:app . . COPY --chown=app:app . .
EXPOSE 4567 EXPOSE 4567
CMD [ "bundle", "exec", "rackup", "--host", "0.0.0.0", "--port", "$PORT" ] CMD [ "puma", "--bind", "0.0.0.0", "--port", "$PORT" ]