mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-01 11:32:27 +08:00
f529714a07
Signed-off-by: Simon L. <szaimen@e.mail.de>
19 lines
473 B
Docker
19 lines
473 B
Docker
# syntax=docker/dockerfile:latest
|
|
# From https://github.com/containrrr/watchtower/blob/main/dockerfiles/Dockerfile.self-contained
|
|
FROM containrrr/watchtower:1.7.1 AS watchtower
|
|
|
|
FROM alpine:3.20.3
|
|
|
|
RUN set -ex; \
|
|
apk upgrade --no-cache -a; \
|
|
apk add --no-cache bash
|
|
|
|
COPY --from=watchtower /watchtower /watchtower
|
|
|
|
COPY --chmod=775 start.sh /start.sh
|
|
|
|
# hadolint ignore=DL3002
|
|
USER root
|
|
|
|
ENTRYPOINT ["/start.sh"]
|
|
LABEL com.centurylinklabs.watchtower.enable="false"
|