mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
fc256f21c9
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
36 lines
733 B
Docker
36 lines
733 B
Docker
FROM alpine:latest
|
|
LABEL maintainer "Jess Frazelle <jess@linux.com>"
|
|
|
|
ENV PATH /go/bin:/usr/local/go/bin:$PATH
|
|
ENV GOPATH /go
|
|
|
|
RUN apk --no-cache add \
|
|
ca-certificates
|
|
|
|
ENV WATCHTOWER_VERSION v0.3.0
|
|
|
|
RUN buildDeps=' \
|
|
bash \
|
|
go \
|
|
git \
|
|
gcc \
|
|
g++ \
|
|
libc-dev \
|
|
libgcc \
|
|
make \
|
|
' \
|
|
set -x \
|
|
&& apk --no-cache add $buildDeps \
|
|
&& git clone --depth 1 --branch ${WATCHTOWER_VERSION} https://github.com/v2tec/watchtower /go/src/github.com/v2tec/watchtower \
|
|
&& go get github.com/Masterminds/glide \
|
|
&& cd /go/src/github.com/v2tec/watchtower \
|
|
&& glide install \
|
|
&& go build -o /usr/bin/watchtower \
|
|
&& apk del $buildDeps \
|
|
&& rm -rf /go \
|
|
&& echo "Build complete."
|
|
|
|
|
|
ENTRYPOINT [ "watchtower" ]
|
|
CMD [ "--help" ]
|