Created
June 19, 2016 03:59
-
-
Save gnschenker/7a8b1dec9fdf4b1addeda011d1a38e34 to your computer and use it in GitHub Desktop.
Revisions
-
gnschenker created this gist
Jun 19, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ FROM python:3.5 COPY requirements.txt /app/ WORKDIR /app RUN ["pip", "install"] COPY . /app CMD ["python", "manage.py", "runserver"]