restic/docker/Dockerfile

8 lines
142 B
Docker
Raw Normal View History

FROM alpine:latest
2017-06-23 10:26:51 +02:00
COPY restic /usr/bin
RUN apk add --update --no-cache ca-certificates fuse openssh-client
2017-06-23 10:38:19 +02:00
2017-06-23 10:26:51 +02:00
ENTRYPOINT ["/usr/bin/restic"]