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
|
# 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
|
||||||
|
|
Loading…
Reference in a new issue