Skip to content

Instantly share code, notes, and snippets.

@zofrex
Created November 21, 2016 01:44
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 zofrex/755d4fc970f085777c0949a4934d0cff to your computer and use it in GitHub Desktop.
Save zofrex/755d4fc970f085777c0949a4934d0cff to your computer and use it in GitHub Desktop.
Dockerfile for Ocelot
FROM ubuntu:16.04
RUN apt-get update && apt-get install -y g++ \
make \
libboost-all-dev \
libev-dev \
libmysqlclient-dev \
libmysql++-dev
COPY ocelot ocelot/
WORKDIR ocelot
RUN ./configure --with-boost-libdir=/usr/lib/x86_64-linux-gnu --with-ev-lib=/usr/lib/x86_64-linux-gnu --with-mysql-lib=/usr/lib/x86_64-linux-gnu
RUN make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment