Skip to content

Instantly share code, notes, and snippets.

@Guitlle
Created August 28, 2015 23:47
Show Gist options
  • Save Guitlle/1eca9a127ca281aa0ea9 to your computer and use it in GitHub Desktop.
Save Guitlle/1eca9a127ca281aa0ea9 to your computer and use it in GitHub Desktop.
Bonefish dockerfile
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