initial commit

This commit is contained in:
Jonas Forsberg
2023-04-12 16:47:01 +02:00
commit f8d26fa93d
5 changed files with 38 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
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"]