Created
June 19, 2016 03:59
-
-
Save gnschenker/7a8b1dec9fdf4b1addeda011d1a38e34 to your computer and use it in GitHub Desktop.
Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM python:3.5 | |
| COPY requirements.txt /app/ | |
| WORKDIR /app | |
| RUN ["pip", "install"] | |
| COPY . /app | |
| CMD ["python", "manage.py", "runserver"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment