Initial commit
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user