all-in-one/Containers/watchtower/Dockerfile
Simon L de3ec19221 alpine - remove the update arg
Signed-off-by: Simon L <szaimen@e.mail.de>
2023-01-15 18:22:31 +01:00

14 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"]