From e8b5c4230f94bbe15a1a1b9e86b67a5f983eb8fe Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Wed, 10 Oct 2018 14:40:30 +0200 Subject: [PATCH] osmo-*-latest: s/nightly/latest/g in Dockerfile Follow up to I6a564206dd81743deb1eb27eca7081bc333d7434 where the "*-latest" Dockerfiles were introduced. msc, sgsn, sip, stp had references to "nightly" instead of "latest" in their Dockerfiles. Related: OS#3268 Change-Id: I1eab031038927043faf6ed8ed30bdf4d4d1624d5 --- osmo-msc-latest/Dockerfile | 4 ++-- osmo-sgsn-latest/Dockerfile | 4 ++-- osmo-sip-latest/Dockerfile | 2 +- osmo-stp-latest/Dockerfile | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/osmo-msc-latest/Dockerfile b/osmo-msc-latest/Dockerfile index 02298e7b..a8cc3ba4 100644 --- a/osmo-msc-latest/Dockerfile +++ b/osmo-msc-latest/Dockerfile @@ -2,7 +2,7 @@ FROM debian:stretch MAINTAINER Harald Welte -ARG OSMOCOM_REPO="http://download.opensuse.org/repositories/network:/osmocom:/nightly/Debian_9.0/" +ARG OSMOCOM_REPO="http://download.opensuse.org/repositories/network:/osmocom:/latest/Debian_9.0/" COPY Release.key /tmp/Release.key @@ -12,7 +12,7 @@ RUN apt-get update && \ RUN apt-key add /tmp/Release.key && \ rm /tmp/Release.key && \ - echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-nightly.list + echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-latest.list ADD $OSMOCOM_REPO/Release /tmp/Release RUN apt-get update && \ diff --git a/osmo-sgsn-latest/Dockerfile b/osmo-sgsn-latest/Dockerfile index 56b5fdaa..87dbca2a 100644 --- a/osmo-sgsn-latest/Dockerfile +++ b/osmo-sgsn-latest/Dockerfile @@ -2,7 +2,7 @@ FROM debian:stretch MAINTAINER Harald Welte -ARG OSMOCOM_REPO="http://download.opensuse.org/repositories/network:/osmocom:/nightly/Debian_9.0/" +ARG OSMOCOM_REPO="http://download.opensuse.org/repositories/network:/osmocom:/latest/Debian_9.0/" COPY Release.key /tmp/Release.key @@ -12,7 +12,7 @@ RUN apt-get update && \ RUN apt-key add /tmp/Release.key && \ rm /tmp/Release.key && \ - echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-nightly.list + echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-latest.list ADD $OSMOCOM_REPO/Release /tmp/Release RUN apt-get update && \ diff --git a/osmo-sip-latest/Dockerfile b/osmo-sip-latest/Dockerfile index 9f978d8b..a468c9fd 100644 --- a/osmo-sip-latest/Dockerfile +++ b/osmo-sip-latest/Dockerfile @@ -2,7 +2,7 @@ FROM debian:stretch MAINTAINER Harald Welte -ARG OSMOCOM_REPO="http://download.opensuse.org/repositories/network:/osmocom:/nightly/Debian_9.0/" +ARG OSMOCOM_REPO="http://download.opensuse.org/repositories/network:/osmocom:/latest/Debian_9.0/" COPY Release.key /tmp/Release.key diff --git a/osmo-stp-latest/Dockerfile b/osmo-stp-latest/Dockerfile index f5920a53..053e2abd 100644 --- a/osmo-stp-latest/Dockerfile +++ b/osmo-stp-latest/Dockerfile @@ -2,7 +2,7 @@ FROM debian:stretch MAINTAINER Harald Welte -ARG OSMOCOM_REPO="http://download.opensuse.org/repositories/network:/osmocom:/nightly/Debian_9.0/" +ARG OSMOCOM_REPO="http://download.opensuse.org/repositories/network:/osmocom:/latest/Debian_9.0/" COPY Release.key /tmp/Release.key @@ -12,7 +12,7 @@ RUN apt-get update && \ RUN apt-key add /tmp/Release.key && \ rm /tmp/Release.key && \ - echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-nightly.list + echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-latest.list ADD $OSMOCOM_REPO/Release /tmp/Release RUN apt-get update && \