restic/docker/Dockerfile

8 lines
149 B
Docker

FROM alpine:latest
COPY restic /usr/bin
RUN apk add --update --no-cache ca-certificates fuse openssh-client tzdata
ENTRYPOINT ["/usr/bin/restic"]