aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-05-04 07:50:49 +0200
committerOliver Smith <osmith@sysmocom.de>2021-05-04 09:30:48 +0200
commit8e95373986f8991b509d85515305b50dd7bd026a (patch)
tree4234c57d2457594ab564254d751fb9aa6ae65e02
parent6ad42884a599ab538c52413ed58f3d8c1ea3e152 (diff)
osmo-*-latest: use OSMOCOM_REPO_VERSION
-rw-r--r--osmo-bsc-latest/Dockerfile3
-rw-r--r--osmo-bts-latest/Dockerfile3
-rw-r--r--osmo-cbc-latest/Dockerfile3
-rw-r--r--osmo-cn-latest/Dockerfile3
-rw-r--r--osmo-gbproxy-latest/Dockerfile3
-rw-r--r--osmo-ggsn-latest/Dockerfile3
-rw-r--r--osmo-hlr-latest/Dockerfile3
-rw-r--r--osmo-hnbgw-latest/Dockerfile3
-rw-r--r--osmo-mgw-latest/Dockerfile3
-rw-r--r--osmo-msc-latest/Dockerfile3
-rw-r--r--osmo-nitb-latest/Dockerfile3
-rw-r--r--osmo-pcap-latest/Dockerfile3
-rw-r--r--osmo-pcu-latest/Dockerfile3
-rw-r--r--osmo-remsim-latest/Dockerfile3
-rw-r--r--osmo-sgsn-latest/Dockerfile3
-rw-r--r--osmo-sip-latest/Dockerfile3
-rw-r--r--osmo-smlc-latest/Dockerfile3
-rw-r--r--osmo-stp-latest/Dockerfile3
18 files changed, 36 insertions, 18 deletions
diff --git a/osmo-bsc-latest/Dockerfile b/osmo-bsc-latest/Dockerfile
index 3352ed2..e4a6044 100644
--- a/osmo-bsc-latest/Dockerfile
+++ b/osmo-bsc-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-bts-latest/Dockerfile b/osmo-bts-latest/Dockerfile
index 2b41968..ad79cb3 100644
--- a/osmo-bts-latest/Dockerfile
+++ b/osmo-bts-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-cbc-latest/Dockerfile b/osmo-cbc-latest/Dockerfile
index d919dae..5361e2f 100644
--- a/osmo-cbc-latest/Dockerfile
+++ b/osmo-cbc-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-cn-latest/Dockerfile b/osmo-cn-latest/Dockerfile
index 3da7175..e17efee 100644
--- a/osmo-cn-latest/Dockerfile
+++ b/osmo-cn-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
RUN apt-get update && \
diff --git a/osmo-gbproxy-latest/Dockerfile b/osmo-gbproxy-latest/Dockerfile
index 7c729a5..5e16f99 100644
--- a/osmo-gbproxy-latest/Dockerfile
+++ b/osmo-gbproxy-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-ggsn-latest/Dockerfile b/osmo-ggsn-latest/Dockerfile
index 0da9703..e5408e3 100644
--- a/osmo-ggsn-latest/Dockerfile
+++ b/osmo-ggsn-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-hlr-latest/Dockerfile b/osmo-hlr-latest/Dockerfile
index ece7aa6..b0a06d0 100644
--- a/osmo-hlr-latest/Dockerfile
+++ b/osmo-hlr-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-hnbgw-latest/Dockerfile b/osmo-hnbgw-latest/Dockerfile
index 81fdead..f71751d 100644
--- a/osmo-hnbgw-latest/Dockerfile
+++ b/osmo-hnbgw-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
RUN apt-get update && \
diff --git a/osmo-mgw-latest/Dockerfile b/osmo-mgw-latest/Dockerfile
index 5b01fe8..ede6cb1 100644
--- a/osmo-mgw-latest/Dockerfile
+++ b/osmo-mgw-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-msc-latest/Dockerfile b/osmo-msc-latest/Dockerfile
index 29e932a..cc18602 100644
--- a/osmo-msc-latest/Dockerfile
+++ b/osmo-msc-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-nitb-latest/Dockerfile b/osmo-nitb-latest/Dockerfile
index 8c3acb8..bd4f73b 100644
--- a/osmo-nitb-latest/Dockerfile
+++ b/osmo-nitb-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-pcap-latest/Dockerfile b/osmo-pcap-latest/Dockerfile
index 30c6a56..7cb4d79 100644
--- a/osmo-pcap-latest/Dockerfile
+++ b/osmo-pcap-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-pcu-latest/Dockerfile b/osmo-pcu-latest/Dockerfile
index 7f1b3ac..bb1fe41 100644
--- a/osmo-pcu-latest/Dockerfile
+++ b/osmo-pcu-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-remsim-latest/Dockerfile b/osmo-remsim-latest/Dockerfile
index db1aa05..991c97e 100644
--- a/osmo-remsim-latest/Dockerfile
+++ b/osmo-remsim-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
RUN apt-get update && \
diff --git a/osmo-sgsn-latest/Dockerfile b/osmo-sgsn-latest/Dockerfile
index 21728c9..c816026 100644
--- a/osmo-sgsn-latest/Dockerfile
+++ b/osmo-sgsn-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-sip-latest/Dockerfile b/osmo-sip-latest/Dockerfile
index 825735c..d70341b 100644
--- a/osmo-sip-latest/Dockerfile
+++ b/osmo-sip-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-smlc-latest/Dockerfile b/osmo-smlc-latest/Dockerfile
index 12487ec..6d9299b 100644
--- a/osmo-smlc-latest/Dockerfile
+++ b/osmo-smlc-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
diff --git a/osmo-stp-latest/Dockerfile b/osmo-stp-latest/Dockerfile
index d3279f0..5a22bc7 100644
--- a/osmo-stp-latest/Dockerfile
+++ b/osmo-stp-latest/Dockerfile
@@ -1,6 +1,7 @@
ARG USER
ARG DISTRO
-FROM $USER/$DISTRO-obs-latest
+ARG OSMOCOM_REPO_VERSION="latest"
+FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO