From: Yann E. MORIN Date: Sun, 4 Feb 2018 14:44:24 +0000 (+0100) Subject: support/docker: use a known base distribution X-Git-Tag: 2018.02-rc1~22 X-Git-Url: http://rtime.felk.cvut.cz/gitweb/coffee/buildroot.git/commitdiff_plain/3c24b8bd401df6605661fdc83805c363eb0114d0 support/docker: use a known base distribution Currently, we are using debian:stable, which is subject to change with time, as new stable versions of Debian are released/updated. Use the latest tagged stable release, stretch-20171210 as of today, as the base distribution to use. This will ease reproducible builds in the future. Signed-off-by: "Yann E. MORIN" Cc: Arnout Vandecappelle Cc: Peter Korsgaard Signed-off-by: Peter Korsgaard --- diff --git a/support/docker/Dockerfile b/support/docker/Dockerfile index aa2b38fcc9..49b74b88bd 100644 --- a/support/docker/Dockerfile +++ b/support/docker/Dockerfile @@ -3,7 +3,7 @@ # sudo docker build -t buildroot/base support/docker # sudo docker push buildroot/base -FROM debian:stable +FROM debian:stretch-20171210 LABEL maintainer="Buildroot mailing list " \ vendor="Buildroot" \ description="Container with everything needed to run Buildroot"