Skip to content

Instantly share code, notes, and snippets.

@val314159
Last active August 29, 2015 14:21
Show Gist options
  • Save val314159/0a1312af3191f03da8ec to your computer and use it in GitHub Desktop.
Save val314159/0a1312af3191f03da8ec to your computer and use it in GitHub Desktop.
raml-python dockerfile
#!/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