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/.
laforge gerrit-no-reply at lists.osmocom.orglaforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/docker-playground/+/26579 )
Change subject: Add debian-bullseye-build container
......................................................................
Add debian-bullseye-build container
Change-Id: Ie2c75f30a5fc46979812ddfbea349e3d2fa91a7d
---
A debian-bullseye-build/Dockerfile
1 file changed, 70 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/docker-playground refs/changes/79/26579/1
diff --git a/debian-bullseye-build/Dockerfile b/debian-bullseye-build/Dockerfile
new file mode 100644
index 0000000..dcea217
--- /dev/null
+++ b/debian-bullseye-build/Dockerfile
@@ -0,0 +1,70 @@
+ARG REGISTRY=docker.io
+ARG UPSTREAM_DISTRO=debian:bullseye
+FROM ${REGISTRY}/${UPSTREAM_DISTRO}
+# Arguments used after FROM must be specified again
+ARG OSMOCOM_REPO_MIRROR="http://download.opensuse.org"
+ARG OSMOCOM_REPO_PATH="repositories/network:/osmocom:"
+ARG OSMOCOM_REPO="$OSMOCOM_REPO_MIRROR/${OSMOCOM_REPO_PATH}/nightly/Debian_11/"
+
+RUN apt-get update && \
+ apt-get upgrade -y && \
+ apt-get install -y --no-install-recommends \
+ autoconf \
+ autoconf-archive \
+ autogen \
+ automake \
+ bison \
+ build-essential \
+ cppcheck \
+ dahdi-source \
+ debhelper \
+ devscripts \
+ dh-autoreconf \
+ doxygen \
+ flex \
+ g++ \
+ gawk \
+ gcc \
+ gcc-arm-none-eabi \
+ git \
+ git-buildpackage \
+ gnupg \
+ libc-ares-dev \
+ libdbd-sqlite3 \
+ libdbi-dev \
+ libfftw3-dev \
+ libgnutls28-dev \
+ libgps-dev \
+ libgsm1-dev \
+ libncurses5-dev \
+ libnewlib-arm-none-eabi \
+ libortp-dev \
+ libpcap-dev \
+ libpcsclite-dev \
+ libtalloc-dev \
+ libtool \
+ libreadline-dev \
+ libsctp-dev \
+ libsofia-sip-ua-glib-dev \
+ libsqlite3-dev \
+ libssl-dev \
+ libusb-dev \
+ libusb-1.0-0-dev \
+ make \
+ pkg-config \
+ sqlite3 \
+ stow \
+ telnet \
+ wget && \
+ apt-get clean
+
+# Make respawn.sh part of this image, so it can be used by other images based on it
+COPY .common/respawn.sh /usr/local/bin/respawn.sh
+
+COPY .common/Release.key /tmp/Release.key
+RUN apt-key add /tmp/Release.key && \
+ rm /tmp/Release.key && \
+ echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-nightly.list
+
+# Invalidate cache once the repository is updated
+ADD $OSMOCOM_REPO/Release /tmp/Release
--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/26579
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: Ie2c75f30a5fc46979812ddfbea349e3d2fa91a7d
Gerrit-Change-Number: 26579
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge at osmocom.org>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20211215/6830df20/attachment.htm>