Created
March 29, 2017 01:07
-
-
Save luisnaranjo733/8978330fc39d37a9f31fe94341b647ae to your computer and use it in GitHub Desktop.
web 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.6 | |
| ENV PYTHONUNBUFFERED 1 | |
| RUN mkdir /config | |
| ADD /config/requirements.txt /config/ | |
| RUN pip install -r /config/requirements.txt | |
| RUN mkdir /src; | |
| WORKDIR /src |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment