Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
Use WSGI all the time for sync with Heroku
Browse files Browse the repository at this point in the history
  • Loading branch information
palfrey committed Feb 27, 2017
1 parent 21339a9 commit 26fe90c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -6,4 +6,4 @@ ADD requirements.txt /code/
RUN pip install -r requirements.txt
ADD . /code/
EXPOSE 8000
CMD bash -c "python manage.py migrate && python manage.py runserver 0.0.0.0:8000"
CMD bash -c "python manage.py migrate && gunicorn bgg_graph.wsgi --log-file - --reload --bind 0.0.0.0:8000"

0 comments on commit 26fe90c

Please sign in to comment.