Created
February 4, 2019 19:28
-
-
Save kristiewirth/2321470a63ff8329acba5a835b551739 to your computer and use it in GitHub Desktop.
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 | |
COPY /requirements.txt /app/requirements.txt | |
COPY /src/app.py /app/src/app.py | |
WORKDIR /app/src | |
RUN pip install -r /app/requirements.txt | |
ENTRYPOINT ["python", "app.py"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment