Skip to content

Instantly share code, notes, and snippets.

@wandernauta
Created September 21, 2015 21:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wandernauta/c6a1fbe2350b4da8ed08 to your computer and use it in GitHub Desktop.
Save wandernauta/c6a1fbe2350b4da8ed08 to your computer and use it in GitHub Desktop.
Untested Dockerfile for rock
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