|
@@ -15,4 +15,4 @@ ADD . /app
|
|
EXPOSE 80
|
|
EXPOSE 80
|
|
|
|
|
|
# Define our command to be run when launching the container
|
|
# Define our command to be run when launching the container
|
|
-CMD ["python", "app.py"]
|
|
|
|
|
|
+CMD gunicorn app:app -b 0.0.0.0:80 --log-file - --access-logfile - --workers 4 --keep-alive 0
|