2024-02-16 16:21:18 +01:00
|
|
|
# syntax=docker/dockerfile:latest
|
2021-11-30 11:20:42 +01:00
|
|
|
# From https://github.com/containrrr/watchtower/blob/main/dockerfiles/Dockerfile.self-contained
|
2024-06-21 13:16:55 +02:00
|
|
|
FROM containrrr/watchtower:1.7.1 AS watchtower
|
2021-11-30 11:20:42 +01:00
|
|
|
|
2024-09-09 12:40:01 +00:00
|
|
|
FROM alpine:3.20.3
|
2021-11-30 11:20:42 +01:00
|
|
|
|
2024-09-17 10:35:54 +02:00
|
|
|
RUN set -ex; \
|
|
|
|
|
apk upgrade --no-cache -a; \
|
2024-04-17 17:52:42 +02:00
|
|
|
apk add --no-cache bash
|
|
|
|
|
|
2023-05-03 16:38:40 +02:00
|
|
|
COPY --from=watchtower /watchtower /watchtower
|
2021-11-30 11:20:42 +01:00
|
|
|
|
2023-05-03 17:35:14 +02:00
|
|
|
COPY --chmod=775 start.sh /start.sh
|
2021-11-30 11:20:42 +01:00
|
|
|
|
2023-08-23 16:06:17 +02:00
|
|
|
# hadolint ignore=DL3002
|
2023-06-03 14:56:05 +02:00
|
|
|
USER root
|
|
|
|
|
|
2021-11-30 11:20:42 +01:00
|
|
|
ENTRYPOINT ["/start.sh"]
|
2023-06-26 00:56:08 +02:00
|
|
|
LABEL com.centurylinklabs.watchtower.enable="false"
|