You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
365 B
Docker
19 lines
365 B
Docker
5 years ago
|
FROM alpine:3.11 as alpine
|
||
6 years ago
|
|
||
|
RUN apk add --no-cache \
|
||
|
ca-certificates \
|
||
|
tzdata
|
||
|
|
||
|
FROM scratch
|
||
|
LABEL "com.centurylinklabs.watchtower"="true"
|
||
|
|
||
|
COPY --from=alpine \
|
||
|
/etc/ssl/certs/ca-certificates.crt \
|
||
|
/etc/ssl/certs/ca-certificates.crt
|
||
|
COPY --from=alpine \
|
||
|
/usr/share/zoneinfo \
|
||
|
/usr/share/zoneinfo
|
||
|
|
||
|
COPY watchtower /
|
||
5 years ago
|
ENTRYPOINT ["/watchtower"]
|