mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-14 11:04:28 +08:00
3029b277f1
Signed-off-by: szaimen <szaimen@e.mail.de>
13 lines
314 B
Docker
13 lines
314 B
Docker
# From https://github.com/containrrr/watchtower/blob/main/dockerfiles/Dockerfile.self-contained
|
|
FROM containrrr/watchtower:1.4.0 as watchtower
|
|
|
|
FROM alpine:3.15.0
|
|
|
|
RUN apk add --update --no-cache bash
|
|
COPY --from=watchtower /watchtower /
|
|
|
|
COPY start.sh /
|
|
RUN chmod +x /start.sh
|
|
|
|
USER root
|
|
ENTRYPOINT ["/start.sh"]
|