mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-14 14:10:12 +01:00
13 lines
341 B
Text
13 lines
341 B
Text
|
|
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"]
|