fix port gunicorn
This commit is contained in:
parent
a5f4159a49
commit
d60f54ed35
@ -9,4 +9,4 @@ COPY . .
|
|||||||
RUN pip3 install -r requirements.txt
|
RUN pip3 install -r requirements.txt
|
||||||
EXPOSE 5000/udp
|
EXPOSE 5000/udp
|
||||||
EXPOSE 5000/tcp
|
EXPOSE 5000/tcp
|
||||||
CMD ["gunicorn", "-b", "0.0.0.0:5000", "ayct_backend:app", "--timeout", "120"]
|
CMD ["gunicorn", "-b", "0.0.0.0:$PORT", "ayct_backend:create_app()", "--timeout", "120"]
|
@ -27,5 +27,3 @@ def create_app():
|
|||||||
return "Hello world!"
|
return "Hello world!"
|
||||||
|
|
||||||
return app
|
return app
|
||||||
|
|
||||||
app = create_app()
|
|
||||||
|
Loading…
Reference in New Issue
Block a user