Change in docker-playground[master]: osmo-*-latest: use OSMOCOM_REPO_VERSION

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

osmith gerrit-no-reply at lists.osmocom.org
Tue May 4 07:38:09 UTC 2021


osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/docker-playground/+/24117 )


Change subject: osmo-*-latest: use OSMOCOM_REPO_VERSION
......................................................................

osmo-*-latest: use OSMOCOM_REPO_VERSION

Related: SYS#5370
Change-Id: I237a296ea8a1e08bc31f351c5f42a59fe7438815
---
M osmo-bsc-latest/Dockerfile
M osmo-bts-latest/Dockerfile
M osmo-cbc-latest/Dockerfile
M osmo-cn-latest/Dockerfile
M osmo-gbproxy-latest/Dockerfile
M osmo-ggsn-latest/Dockerfile
M osmo-hlr-latest/Dockerfile
M osmo-hnbgw-latest/Dockerfile
M osmo-mgw-latest/Dockerfile
M osmo-msc-latest/Dockerfile
M osmo-nitb-latest/Dockerfile
M osmo-pcap-latest/Dockerfile
M osmo-pcu-latest/Dockerfile
M osmo-remsim-latest/Dockerfile
M osmo-sgsn-latest/Dockerfile
M osmo-sip-latest/Dockerfile
M osmo-smlc-latest/Dockerfile
M osmo-stp-latest/Dockerfile
18 files changed, 36 insertions(+), 18 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/docker-playground refs/changes/17/24117/1

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
 

-- 
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/24117
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I237a296ea8a1e08bc31f351c5f42a59fe7438815
Gerrit-Change-Number: 24117
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith at sysmocom.de>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210504/2d5be36b/attachment.htm>


More information about the gerrit-log mailing list