database-backup-image/Dockerfile
Adam Štrauch 737e6846e5
All checks were successful
Build a dev image / build (push) Successful in 13s
Release of a new version / build (release) Successful in 17s
Initial commit
2025-10-18 01:48:43 +02:00

8 lines
163 B
Docker

FROM alpine:3.22
RUN apk add --no-cache restic docker-cli docker-cli-compose curl
COPY backup.sh /backup.sh
RUN chmod +x /backup.sh
ENTRYPOINT [ "/backup.sh" ]