Skip to content

Commit 1412095

Browse files
committed
updated env syntax
1 parent 8c270b1 commit 1412095

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ USER flask
1717

1818
# Expose any ports the app is expecting in the environment
1919
ENV FLASK_APP=wsgi:app
20-
ENV PORT 8080
20+
ENV PORT=8080
2121
EXPOSE $PORT
2222

23-
ENV GUNICORN_BIND 0.0.0.0:$PORT
23+
ENV GUNICORN_BIND=0.0.0.0:$PORT
2424
ENTRYPOINT ["gunicorn"]
2525
CMD ["--log-level=info", "wsgi:app"]

0 commit comments

Comments
 (0)