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.

Revisions

  1. gnschenker created this gist Jun 19, 2016.
    6 changes: 6 additions & 0 deletions Dockerfile
    Original 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"]