diff --git a/build.Dockerfile b/build.Dockerfile index 9b1e5f135..9ec675c26 100644 --- a/build.Dockerfile +++ b/build.Dockerfile @@ -8,7 +8,6 @@ RUN go get github.com/BurntSushi/toml \ RUN go get github.com/mailgun/oxy/forward \ && go get github.com/mailgun/oxy/roundrobin \ && go get github.com/mailgun/oxy/cbreaker \ - && go get github.com/mailgun/log \ && go get github.com/mailgun/predicate RUN go get github.com/gorilla/handlers \ && go get github.com/gorilla/mux @@ -24,6 +23,7 @@ RUN go get github.com/fsouza/go-dockerclient \ && go get github.com/gambol99/go-marathon RUN go get gopkg.in/fsnotify.v1 \ && go get gopkg.in/alecthomas/kingpin.v2 +RUN go get github.com/hashicorp/consul/api WORKDIR /go/src/github.com/emilevauge/traefik diff --git a/script/binary b/script/binary index 7933a8cc5..95332a46e 100755 --- a/script/binary +++ b/script/binary @@ -7,7 +7,9 @@ if ! test -e gen.go; then fi if [ -z "$1" ]; then - OS_PLATFORM_ARG=(-os="darwin linux windows") + # Remove windows platform because of + # https://github.com/mailgun/log/issues/10 + OS_PLATFORM_ARG=(-os="darwin linux") else OS_PLATFORM_ARG=($1) fi