osmo-remism-latest: Actually use 'latest', not 'nightly' feed

Change-Id: I790a7c0777298c7e9786521858d3fd9b39831ad6
This commit is contained in:
Harald Welte 2020-03-11 09:56:32 +01:00
parent 0e0085d03b
commit 1c39da5d44
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ FROM debian:stretch
MAINTAINER Harald Welte <laforge@gnumonks.org>
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
@ -13,7 +13,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 && \