11 lines
261 B
Docker
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"]
|