FIX GUNICORN 2

This commit is contained in:
Łukasz Jędyk 2022-06-09 20:45:55 +02:00
parent 45f4029509
commit a5f4159a49
2 changed files with 3 additions and 1 deletions

View File

@ -9,4 +9,4 @@ COPY . .
RUN pip3 install -r requirements.txt
EXPOSE 5000/udp
EXPOSE 5000/tcp
CMD ["gunicorn", "-b", "0.0.0.0:5000", "ayct_backend:create_app()", "--timeout", "120"]
CMD ["gunicorn", "-b", "0.0.0.0:5000", "ayct_backend:app", "--timeout", "120"]

View File

@ -27,3 +27,5 @@ def create_app():
return "Hello world!"
return app
app = create_app()