mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
add watchtower
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
parent
e29c10baee
commit
fc256f21c9
|
@ -126,6 +126,7 @@ hashicorp/terraform
|
||||||
kdlucas/byte-unixbench
|
kdlucas/byte-unixbench
|
||||||
mitchellh/vagrant
|
mitchellh/vagrant
|
||||||
hashicorp/vault
|
hashicorp/vault
|
||||||
|
v2tec/watchtower
|
||||||
wireguard/wireguard
|
wireguard/wireguard
|
||||||
znc/znc
|
znc/znc
|
||||||
apache/zookeeper
|
apache/zookeeper
|
||||||
|
|
35
watchtower/Dockerfile
Normal file
35
watchtower/Dockerfile
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
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" ]
|
Loading…
Reference in New Issue
Block a user