Skip to content

Commit

Permalink
Fix cert env var handling (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
FasterSpeeding authored Mar 5, 2024
1 parent 6f84ff8 commit 9538c87
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 9538c87

Please sign in to comment.