Files
dockerfiles/postgres-backup/Dockerfile
T
uleenucks 552e76d78e
Build and push / check and test (push) Successful in 8s
Build and push / build_and_push (push) Failing after 2m40s
* MOD: use postgresql-client in backup
Signed-off-by: Uwe Hermann <uh@uleenucks.de>
2025-12-26 22:21:28 +01:00

18 lines
318 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 \
postgresql-client \
tzdata \
7zip \
bash \
supercronic
HEALTHCHECK CMD [ "/app/healthcheck.sh" ]
ENTRYPOINT ["/app/entrypoint.sh"]