8 lines
232 B
Docker
8 lines
232 B
Docker
FROM restic/restic:0.18.1
|
|
|
|
RUN apk add --no-cache openssh-client bash
|
|
|
|
COPY scripts/restic.bash /usr/local/bin/backup-entrypoint.sh
|
|
RUN chmod +x /usr/local/bin/backup-entrypoint.sh
|
|
|
|
ENTRYPOINT ["/usr/local/bin/backup-entrypoint.sh"] |