Skip to content

Instantly share code, notes, and snippets.

@gnschenker
Created June 19, 2016 03:59
Show Gist options
  • Select an option

  • Save gnschenker/7a8b1dec9fdf4b1addeda011d1a38e34 to your computer and use it in GitHub Desktop.

Select an option

Save gnschenker/7a8b1dec9fdf4b1addeda011d1a38e34 to your computer and use it in GitHub Desktop.
Dockerfile
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