diff --git a/Dockerfile b/Dockerfile index 201d6fa..5e698a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,4 +24,5 @@ RUN npm install EXPOSE 8000 # Command to run on container start -CMD ["flask", "--app", "app", "run", "--host=0.0.0.0", "--port=8000", "--debug"] \ No newline at end of file +#CMD ["flask", "--app", "app", "run", "--host=0.0.0.0", "--port=8000", "--debug"] +CMD ["gunicorn", "-b", "0.0.0.0:8000", "app:app"]