Last active
August 29, 2015 14:21
-
-
Save val314159/0a1312af3191f03da8ec to your computer and use it in GitHub Desktop.
raml-python dockerfile
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
| #!/usr/bin/env docker build -f | |
| FROM ubuntu | |
| MAINTAINER Joel Ward <[email protected]> | |
| RUN apt-get -y -qq install python wget git | |
| RUN cd /opt && \ | |
| wget http://nodejs.org/dist/v0.10.28/node-v0.10.28-linux-x64.tar.gz && \ | |
| tar -xvf node-v0.10.28-linux-x64.tar.gz && \ | |
| mv node-v0.10.28-linux-x64 node && \ | |
| cd /usr/local/bin && \ | |
| ln -s /opt/node/bin/* . && \ | |
| rm -fr /opt/node-v0.10.28-linux-x64.tar.gz | |
| RUN npm install raml-python -g | |
| WORKDIR /root | |
| #RUN apt-get -y -qq install emacs | |
| CMD /bin/bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment