Created
September 21, 2015 21:16
-
-
Save wandernauta/c6a1fbe2350b4da8ed08 to your computer and use it in GitHub Desktop.
Untested Dockerfile for rock
This file contains 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 | |
RUN apt-get update && apt-get install -y git build-essential libpcre3-dev wget | |
RUN wget https://github.com/fasterthanlime/rock/archive/master.tar.gz && \ | |
tar xvzf master.tar.gz && \ | |
cd rock-master && \ | |
make rescue | |
ENV PATH /rock-master/bin:$PATH | |
ENV OOC_LIBS /:/rock-master | |
CMD ["/bin/bash"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment