borg/Dockerfile
2025-04-20 13:12:29 +00:00

7 lines
204 B
Docker

FROM docker.io/debian:12-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
borgbackup \
openssh-client \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["borg"]