You've already forked watchtower
mirror of
https://github.com/containrrr/watchtower.git
synced 2025-09-16 08:56:44 +02:00
Bumps alpine from 3.18.5 to 3.19.0. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24 lines
459 B
Docker
24 lines
459 B
Docker
FROM --platform=$BUILDPLATFORM alpine:3.19.0 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
|
|
|
|
EXPOSE 8080
|
|
|
|
COPY watchtower /
|
|
|
|
HEALTHCHECK CMD [ "/watchtower", "--health-check"]
|
|
|
|
ENTRYPOINT ["/watchtower"]
|