mirror of
https://github.com/octoleo/restic.git
synced 2024-10-31 19:02:32 +00:00
8 lines
142 B
Docker
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"]
|