Initial commit

This commit is contained in:
2025-02-11 02:40:24 +00:00
commit 9dd06dd647
4 changed files with 60 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM alpine
# Install SSH & borg CLI
RUN apk update
RUN apk add openssh
RUN apk add borgbackup
# Create host keys to allow SSHD to start
RUN ssh-keygen -A
COPY ./entrypoint.sh /entrypoint.sh
CMD ["/entrypoint.sh"]