Skip to content

Instantly share code, notes, and snippets.

Created July 11, 2017 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/701c1f1c681cd3708f50420991f90e08 to your computer and use it in GitHub Desktop.
Save anonymous/701c1f1c681cd3708f50420991f90e08 to your computer and use it in GitHub Desktop.
FROM ubuntu:16.04
MAINTAINER toolbox@cloudpassage.com
RUN apt-get update && apt-get install -y \
python-pip=1.1.1-2ubuntu0.4 && \
pip install \
flask=0.12.2
ADD application /application/
ENTRYPOINT [‘/usr/bin/python`, ‘-mflask`, ‘/application/hello_flask.py`]
CMD [‘`]
RUN apt-get clean &&
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment