Skip to content

Commit

Permalink
Merge pull request #202 from uma-universal-money-address/feat/dockerfile
Browse files Browse the repository at this point in the history
Switch away from ENTRYPOINT in the dockerfile to enhance configuration.
  • Loading branch information
jklein24 authored Oct 9, 2024
2 parents 270d07b + ab1d099 commit 1bd63a1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ RUN pip install --upgrade pip wheel setuptools && \


EXPOSE 8081
ENTRYPOINT ["gunicorn"]
CMD ["-b", "0.0.0.0:8081", "-k", "uvicorn.workers.UvicornWorker", "nwc_backend.server:app"]
CMD ["gunicorn", "-b", "0.0.0.0:8081", "-k", "uvicorn.workers.UvicornWorker", "nwc_backend.server:app"]

COPY alembic.ini /app
COPY alembic /app/alembic
Expand Down

0 comments on commit 1bd63a1

Please sign in to comment.