Change(Dockerfile): Allow different base images
This commit is contained in:
parent
5c1724875c
commit
80e99c96d5
|
@ -2,7 +2,8 @@
|
|||
# Dockerfile to build borgbackup server images
|
||||
# Based on Debian
|
||||
############################################################
|
||||
FROM debian:bullseye-slim
|
||||
ARG BASE_IMAGE=debian:bullseye-slim
|
||||
FROM $BASE_IMAGE
|
||||
|
||||
# Volume for SSH-Keys
|
||||
VOLUME /sshkeys
|
||||
|
|
Loading…
Reference in a new issue