Skip to content

Instantly share code, notes, and snippets.

@aledbf
Created July 29, 2014 21:52
Show Gist options
  • Save aledbf/5cde41599f4bf25dbd2f to your computer and use it in GitHub Desktop.
Save aledbf/5cde41599f4bf25dbd2f to your computer and use it in GitHub Desktop.
FROM ubuntu:14.04
RUN apt-get install -y python-setuptools
RUN easy_install pip
ADD requirements.txt /src/requirements.txt
RUN cd /src; pip install -r requirements.txt
ADD . /src
EXPOSE 5000
CMD ["python", "/src/app.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment