Created
April 19, 2015 13:52
-
-
Save AutomatedTester/9d1e4dd822abba361c39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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