mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-06 05:51:49 +08:00
4b28a6a7d7
Signed-off-by: szaimen <szaimen@e.mail.de>
13 lines
315 B
Docker
13 lines
315 B
Docker
# From https://github.com/containrrr/watchtower/blob/main/dockerfiles/Dockerfile.self-contained
|
|
FROM containrrr/watchtower:latest as watchtower
|
|
|
|
FROM alpine:latest
|
|
|
|
RUN apk add --update --no-cache bash
|
|
COPY --from=watchtower /watchtower /
|
|
|
|
COPY start.sh /
|
|
RUN chmod +x /start.sh
|
|
|
|
USER root
|
|
ENTRYPOINT ["/start.sh"]
|