aboutsummaryrefslogtreecommitdiffstats
path: root/osmo-msc-latest
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2020-11-02 14:24:39 +0100
committerHarald Welte <laforge@osmocom.org>2020-11-02 17:02:26 +0100
commit027826fdba19a8211d5787cc80955bdf91336f45 (patch)
tree11b2f0462699fbc32a644ff3aa9dc838afa3b33b /osmo-msc-latest
parenta90660bef88a6cbb3b6856ec543f7685085bb620 (diff)
introduce 'REGISTRY' argument to all Dockerfiles
This is initialized to docker.io, keeping the default behaviour if not specified. However, it allows us to specify a private registry later on. Related: OS#4839 Change-Id: I32d4ee6256033c809108c1b86cb6b6c58d880f49
Diffstat (limited to 'osmo-msc-latest')
-rw-r--r--osmo-msc-latest/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/osmo-msc-latest/Dockerfile b/osmo-msc-latest/Dockerfile
index 5780f71..6fc5858 100644
--- a/osmo-msc-latest/Dockerfile
+++ b/osmo-msc-latest/Dockerfile
@@ -1,4 +1,5 @@
-FROM debian:stretch
+ARG REGISTRY=docker.io
+FROM ${REGISTRY}/debian:stretch
MAINTAINER Harald Welte <laforge@gnumonks.org>