summaryrefslogtreecommitdiffstats
path: root/support/docker
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2018-02-04 15:44:25 +0100
committerPeter Korsgaard <peter@korsgaard.com>2018-02-04 21:57:53 +0100
commit5fdf5e4099ac8ca624b27f3b01d2a3eafb13e4f9 (patch)
tree3af44841a9148e4522eeca58223c59a509139b32 /support/docker
parent3c24b8bd401df6605661fdc83805c363eb0114d0 (diff)
downloadbuildroot-5fdf5e4099ac8ca624b27f3b01d2a3eafb13e4f9.tar.gz
buildroot-5fdf5e4099ac8ca624b27f3b01d2a3eafb13e4f9.zip
support/docker: use a fixed Debian snapshot
Since we're now using a specific base image tag, we need to also use a specific, stable repository to get additional packages from for this image. As such, use the Debian snapshot that matches the base image. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'support/docker')
-rw-r--r--support/docker/Dockerfile7
-rw-r--r--support/docker/apt-sources.list4
2 files changed, 11 insertions, 0 deletions
diff --git a/support/docker/Dockerfile b/support/docker/Dockerfile
index 49b74b88bd..f18d195f37 100644
--- a/support/docker/Dockerfile
+++ b/support/docker/Dockerfile
@@ -3,7 +3,11 @@
# sudo docker build -t buildroot/base support/docker
# sudo docker push buildroot/base
+# We use a specific tag for the base image *and* the corresponding date
+# for the repository., so do not forget to update the apt-sources.list
+# file that is shipped next to this Dockerfile.
FROM debian:stretch-20171210
+
LABEL maintainer="Buildroot mailing list <buildroot@buildroot.org>" \
vendor="Buildroot" \
description="Container with everything needed to run Buildroot"
@@ -11,6 +15,9 @@ description="Container with everything needed to run Buildroot"
# Setup environment
ENV DEBIAN_FRONTEND noninteractive
+# This repository can be a bit slow at times. Don't panic...
+COPY apt-sources.list /etc/apt/sources.list
+
# The container has no package lists, so need to update first
RUN dpkg --add-architecture i386 && \
apt-get update -y && \
diff --git a/support/docker/apt-sources.list b/support/docker/apt-sources.list
new file mode 100644
index 0000000000..789fb8fc17
--- /dev/null
+++ b/support/docker/apt-sources.list
@@ -0,0 +1,4 @@
+# Latest just before 20171210T000000Z:
+deb [check-valid-until=no] http://snapshot.debian.org/archive/debian/20171209T220346Z/ stretch main
+deb [check-valid-until=no] http://snapshot.debian.org/archive/debian/20171209T220346Z/ stretch-updates main
+deb [check-valid-until=no] http://snapshot.debian.org/archive/debian-security/20171209T224618Z/ stretch/updates main
OpenPOWER on IntegriCloud