restic/Dockerfile
Jonas Forsberg 42fea8c6e1 added TZ env
2023-04-20 13:24:56 +02:00

15 lines
338 B
Docker

ARG VERSION
FROM registry.opensuse.org/opensuse/tumbleweed:${VERSION}
RUN zypper --non-interactive install \
openssh-clients \
restic \
&& zypper clean -a
ENV TZ="Europe/Stockholm"
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
CMD ["start"]