Created
November 27, 2016 04:38
-
-
Save gnschenker/a9a0853f415930e3fe5da2519dda1403 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/ | |
RUN pip install -r requirements.txt | |
# for debugging purposes | |
RUN pip install ptvsd | |
COPY . /app | |
EXPOSE 3000 # debug port | |
EXPOSE 8080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment