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"]