Created
November 27, 2016 23:01
-
-
Save gnschenker/20cd53dbaad5628ff89b6c2c68775cc7 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:2.7 | |
RUN mkdir -p /app | |
WORKDIR /app | |
COPY requirements.txt /app/ | |
# for debugging purposes | |
COPY ./pycharm-debug.egg /app/ | |
RUN pip install -r requirements.txt | |
COPY . /app | |
EXPOSE 8080 | |
CMD python app.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment