8 lines
197 B
Docker
8 lines
197 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/*
|
|
CMD ["borg"]
|