This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/dev' into travis_docker_build
- Loading branch information
Showing
126 changed files
with
3,805 additions
and
909 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
sudo: false | ||
language: go | ||
go: | ||
- 1.4 | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# heka_base image | ||
FROM debian:jessie | ||
FROM golang:1.4 | ||
|
||
MAINTAINER Chance Zibolski <[email protected]> (@chance) | ||
|
||
|
@@ -18,27 +18,15 @@ RUN apt-get update && \ | |
ruby-dev \ | ||
protobuf-compiler \ | ||
python-sphinx \ | ||
wget | ||
|
||
# Install Go 1.3.1 | ||
RUN curl -s https://storage.googleapis.com/golang/go1.3.1.linux-amd64.tar.gz -o /tmp/go.tar.gz && \ | ||
echo "3af011cc19b21c7180f2604fd85fbc4ddde97143 /tmp/go.tar.gz" | sha1sum -c && \ | ||
tar -C /usr/local -xzf /tmp/go.tar.gz | ||
wget \ | ||
debhelper \ | ||
fakeroot \ | ||
libgeoip-dev \ | ||
libgeoip1 \ | ||
golang-goprotobuf-dev | ||
|
||
WORKDIR /heka | ||
|
||
ENV GOROOT /usr/local/go | ||
ENV PATH $PATH:/usr/local/go/bin:/go/bin | ||
|
||
ENV CTEST_OUTPUT_ON_FAILURE 1 | ||
ENV BUILD_DIR /heka/build | ||
ENV GOPATH $BUILD_DIR/heka | ||
ENV GOBIN $GOPATH/bin | ||
ENV PATH $PATH:$GOBIN | ||
# Build faster | ||
ENV NUM_JOBS 10 | ||
|
||
EXPOSE 4352 | ||
|
||
COPY . /heka | ||
RUN ./build.sh |
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
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
Oops, something went wrong.