mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-14 14:10:12 +01:00
minor changes to make it work with new goreleaser version
This commit is contained in:
parent
59eb978b5f
commit
0cd6e6954a
5 changed files with 10 additions and 36 deletions
13
dockerfile/i386/Dockerfile
Normal file
13
dockerfile/i386/Dockerfile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue