2024-04-27 15:45:21 +02:00
|
|
|
FROM debian:bookworm
|
2020-09-05 13:20:22 +02:00
|
|
|
|
|
|
|
|
RUN : \
|
|
|
|
|
&& apt-get update \
|
|
|
|
|
&& apt-get install -y \
|
2024-04-27 15:45:21 +02:00
|
|
|
backblaze-b2 \
|
2020-09-05 13:20:22 +02:00
|
|
|
curl \
|
2024-04-27 15:45:21 +02:00
|
|
|
dumb-init \
|
2020-09-05 13:20:22 +02:00
|
|
|
python3 \
|
|
|
|
|
python3-prometheus-client \
|
|
|
|
|
python3-yaml \
|
|
|
|
|
restic \
|
|
|
|
|
&& apt-get -y clean
|
|
|
|
|
|
|
|
|
|
COPY ./restic-monitor.py /usr/local/bin/restic-monitor
|
|
|
|
|
|
2024-04-27 15:45:21 +02:00
|
|
|
CMD ["/usr/bin/dumb-init", "--", "/usr/local/bin/restic-monitor", "/etc/restic-backblaze-config.yml"]
|