mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-06 13:56:45 +08:00
ef397a9df1
Signed-off-by: Simon L <szaimen@e.mail.de>
14 lines
362 B
Docker
14 lines
362 B
Docker
# From https://github.com/containrrr/watchtower/blob/main/dockerfiles/Dockerfile.self-contained
|
|
FROM containrrr/watchtower:1.5.3 as watchtower
|
|
|
|
FROM alpine:3.17.1
|
|
|
|
RUN apk add --no-cache bash
|
|
COPY --from=watchtower /watchtower /
|
|
|
|
COPY start.sh /
|
|
RUN chmod +x /start.sh
|
|
|
|
USER root
|
|
ENTRYPOINT ["/start.sh"]
|
|
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|