Change(Dockerfile): Allow different base images

This commit is contained in:
nold 2022-01-21 10:16:58 +01:00
parent 5c1724875c
commit 80e99c96d5

View file

@ -2,7 +2,8 @@
# Dockerfile to build borgbackup server images # Dockerfile to build borgbackup server images
# Based on Debian # Based on Debian
############################################################ ############################################################
FROM debian:bullseye-slim ARG BASE_IMAGE=debian:bullseye-slim
FROM $BASE_IMAGE
# Volume for SSH-Keys # Volume for SSH-Keys
VOLUME /sshkeys VOLUME /sshkeys