mirror of
https://github.com/containrrr/watchtower.git
synced 2025-09-21 21:30:48 +02:00
13 lines
No EOL
341 B
Docker
13 lines
No EOL
341 B
Docker
FROM alpine:latest as alpine
|
|
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 /
|
|
ENTRYPOINT ["/watchtower"] |