Created
August 28, 2015 23:47
-
-
Save Guitlle/1eca9a127ca281aa0ea9 to your computer and use it in GitHub Desktop.
Bonefish dockerfile
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 | |
ENV src /src | |
WORKDIR ${src} | |
RUN apt-get update; apt-get install git build-essential -y | |
RUN apt-get install -y cmake libboost-all-dev libmsgpack-dev | |
RUN git clone --recursive https://github.com/tplgy/bonefish.git | |
RUN mkdir bonefish-build && cd bonefish-build; cmake ../bonefish | |
RUN cd bonefish-build/; make; make install | |
CMD ["bonefish-build/daemon/bonefish", "--realm", "\"default\"", "--websocket-port", "9999"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment