Skip to content

Commit

Permalink
Fix dockerfile cert arg handling (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
FasterSpeeding committed Mar 7, 2024
1 parent eabb6f3 commit 9e66e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ RUN python -m pip install --no-cache-dir wheel && \
python -m pip install ./shared

# TODO: https://github.com/ome/devspace/issues/38?
ENTRYPOINT python -m uvicorn main:app --proxy-headers --host 0.0.0.0 --port 80 --ssl-certfile '${SSL_CERT}' --ssl-keyfile '${SSL_KEY}'
ENTRYPOINT python -m uvicorn main:app --proxy-headers --host 0.0.0.0 --port 80 --ssl-certfile ${SSL_CERT} --ssl-keyfile ${SSL_KEY}

0 comments on commit 9e66e71

Please sign in to comment.