Files
dockerfiles/postgres-backup/Dockerfile
Uwe Hermann d41a3946fa
Some checks failed
Build and push / check and test (push) Successful in 16s
Build and push / build_and_push (push) Failing after 1m7s
* MOD: update postgresql-backup
Signed-off-by: Uwe Hermann <uh@uleenucks.de>
2025-12-26 22:18:11 +01:00

20 lines
370 B
Docker

FROM alpine:latest
LABEL maintainer.name="Uwe Hermann"\
maintainer.email="uh@uleenucks.de"
ADD app /app
RUN chmod +x /app/*.sh \
&& apk add --no-cache \
postgresql15-client \
postgresql16-client \
postgresql-client \
tzdata \
7zip \
bash \
supercronic
HEALTHCHECK CMD [ "/app/healthcheck.sh" ]
ENTRYPOINT ["/app/entrypoint.sh"]