mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-10 17:03:44 +08:00
68d95af47d
Signed-off-by: Simon L <szaimen@e.mail.de>
14 lines
365 B
Docker
14 lines
365 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.18.2
|
|
|
|
RUN apk add --no-cache bash
|
|
COPY --from=watchtower /watchtower /watchtower
|
|
|
|
COPY --chmod=775 start.sh /start.sh
|
|
|
|
USER root
|
|
|
|
ENTRYPOINT ["/start.sh"]
|
|
LABEL com.centurylinklabs.watchtower.enable="false"
|