Skip to content

Instantly share code, notes, and snippets.

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