Add brubeck dockerfile

This commit is contained in:
2016-07-06 21:51:34 +02:00
parent c7e8f9bb2a
commit 038e519137
2 changed files with 55 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
FROM ubuntu:14.04
MAINTAINER Gregory Eremin <g@erem.in>
LABEL app="brubeck"
LABEL github="https://github.com/github/brubeck"
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update
RUN apt-get install -y libjansson-dev
RUN apt-get install -y libssl-dev
RUN apt-get install -y libmicrohttpd-dev
RUN apt-get install -y git
RUN apt-get install -y make
RUN mkdir /build
RUN cd /build && git clone https://github.com/github/brubeck.git
WORKDIR /build/brubeck
RUN ./script/bootstrap
COPY configs/brubeck.json /etc/brubeck.json
EXPOSE 8080 8126 9126
ENTRYPOINT ./brubeck --config=/etc/brubeck.json