Skip to content

Instantly share code, notes, and snippets.

@AutomatedTester
Created April 19, 2015 13:52
Show Gist options
  • Select an option

  • Save AutomatedTester/9d1e4dd822abba361c39 to your computer and use it in GitHub Desktop.

Select an option

Save AutomatedTester/9d1e4dd822abba361c39 to your computer and use it in GitHub Desktop.
dburns in ~/development/futurama-data on master ● λ docker run -p 127.0.0.1:5000:5000 futurama:latest python run.py
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
* Restarting with stat
FROM ubuntu:14.04
MAINTAINER David Burns <david.burns@theautomatedtester.co.uk>
RUN apt-get update && apt-get install python-dev python-pip python-virtualenv libapache2-mod-wsgi git -y
RUN git clone https://github.com/AutomatedTester/futurama-data.git /var/www/futurama-data
RUN pip install -r /var/www/futurama-data/requirements.txt
WORKDIR /var/www/futurama-data
EXPOSE 5000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment