restic/docker/Dockerfile

8 lines
142 B
Docker

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