You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
844 B
39 lines
844 B
FROM debian:stretch
|
|
|
|
MAINTAINER Harald Welte <laforge@gnumonks.org>
|
|
|
|
ARG OSMOCOM_REPO="http://download.opensuse.org/repositories/network:/osmocom:/nightly/Debian_9.0/"
|
|
|
|
COPY Release.key /tmp/Release.key
|
|
|
|
ADD $OSMOCOM_REPO/Release /tmp/Release
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
gnupg
|
|
|
|
RUN apt-key add /tmp/Release.key && \
|
|
rm /tmp/Release.key && \
|
|
echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-nightly.list
|
|
|
|
ADD $OSMOCOM_REPO/Release /tmp/Release
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
telnet \
|
|
osmo-remsim-server \
|
|
osmo-remsim-client \
|
|
osmo-remsim-bankd && \
|
|
apt-get clean
|
|
|
|
#ADD respawn.sh /usr/local/bin/respawn.sh
|
|
|
|
WORKDIR /tmp
|
|
|
|
VOLUME /data
|
|
|
|
#COPY osmo-bts.cfg /data/osmo-bts.cfg
|
|
|
|
WORKDIR /data
|
|
CMD ["/usr/bin/osmo-resmim-server"]
|
|
|
|
#EXPOSE
|