Use gunicorn for voting app in prod

This commit is contained in:
Ben Firshman 2016-06-17 21:13:51 -07:00
parent 1a0b0c8b54
commit dd03d8937a
3 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,7 @@ version: "2"
services:
voting-app:
build: ./voting-app
command: python app.py
volumes:
- ./voting-app:/app
ports:

View File

@ -15,4 +15,4 @@ ADD . /app
EXPOSE 80
# 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

View File

@ -1,2 +1,3 @@
Flask
Redis
gunicorn