Skip to content

Instantly share code, notes, and snippets.

@gnschenker
Created November 27, 2016 04:38
Show Gist options
  • Save gnschenker/a9a0853f415930e3fe5da2519dda1403 to your computer and use it in GitHub Desktop.
Save gnschenker/a9a0853f415930e3fe5da2519dda1403 to your computer and use it in GitHub Desktop.
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