Files
backupsidecar/Dockerfile
Timo Behrendt b3fa1c6ef4
Some checks failed
CI / Check syntax (pull_request) Successful in 5s
CI / Build Docker image (pull_request) Failing after 15s
chore: bump pgsql to 18
2025-11-14 17:15:14 +01:00

17 lines
306 B
Docker

FROM alpine:3.22@sha256:4b7ce07002c69e8f3d704a9c5d6fd3053be500b7f1c69fc0d80990c2ad8dd412
RUN apk update && apk add --no-cache \
bash \
curl \
restic \
postgresql18-client \
jq
WORKDIR /app
COPY src/backup.sh /app/backup.sh
RUN chmod +x /app/backup.sh
ENTRYPOINT ["/app/backup.sh"]