restic/Dockerfile

11 lines
261 B
Docker
Raw Normal View History

2023-04-12 14:47:01 +00:00
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"]