Skip to content

Commit

Permalink
Supply libgeoip so geoip support gets compiled
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrobenolt committed Jun 9, 2015
1 parent 5bfc10c commit 69acc95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM golang:1.4

ENV BUILD_DEPS cmake python-sphinx protobuf-compiler patch
ENV BUILD_DEPS cmake python-sphinx protobuf-compiler patch libgeoip-dev

ENV HEKA_VERSION 0.9.2

COPY plugin_loader.cmake /tmp/plugin_loader.cmake

RUN apt-get update && apt-get install -y $BUILD_DEPS --no-install-recommends \
RUN apt-get update && apt-get install -y libgeoip1 $BUILD_DEPS --no-install-recommends \
&& git clone https://github.com/mozilla-services/heka --depth=1 --branch=v$HEKA_VERSION /usr/src/heka \
&& mv /tmp/plugin_loader.cmake /usr/src/heka/cmake \
&& cd /usr/src/heka/ && ./build.sh 2>&1 \
Expand Down

0 comments on commit 69acc95

Please sign in to comment.