restic/Dockerfile
2023-04-12 16:47:01 +02:00

11 lines
261 B
Docker

FROM registry.opensuse.org/opensuse/tumbleweed:latest
ARG VERSION
RUN zypper --non-interactive install \
openssh-clients \
restic-${VERSION} \
&& zypper clean -a
ADD entrypoint.sh /usr/local/bin/entrypoint.sh
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]