mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-06 21:57:58 +08:00
de3ec19221
Signed-off-by: Simon L <szaimen@e.mail.de>
13 lines
305 B
Docker
13 lines
305 B
Docker
# From https://github.com/containrrr/watchtower/blob/main/dockerfiles/Dockerfile.self-contained
|
|
FROM containrrr/watchtower:1.5.1 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"]
|