From 24044d48251fc9cd163e005a3d41d299819d2092 Mon Sep 17 00:00:00 2001 From: Philippe Mathieu-Daudé Date: Mon, 17 Jul 2017 21:31:33 -0300 Subject: docker: rename debian stable -> 9 (Stretch) We'll also want to support some older Debian combinations for architectures that didn't make the Debian 9 cut. Signed-off-by: Philippe Mathieu-Daudé [AJB: extend commit msg] Signed-off-by: Alex Bennée --- tests/docker/dockerfiles/debian9.docker | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tests/docker/dockerfiles/debian9.docker (limited to 'tests/docker/dockerfiles/debian9.docker') diff --git a/tests/docker/dockerfiles/debian9.docker b/tests/docker/dockerfiles/debian9.docker new file mode 100644 index 0000000000..c74f71283c --- /dev/null +++ b/tests/docker/dockerfiles/debian9.docker @@ -0,0 +1,25 @@ +# +# Docker multiarch cross-compiler target +# +# This docker target is builds on Debian cross compiler targets to build distro +# with a selection of cross compilers for building test binaries. +# +# On its own you can't build much but the docker-foo-cross targets +# build on top of the base debian image. +# +FROM debian:stretch-slim + +# Duplicate deb line as deb-src +RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list + +# Install common build utilities +RUN apt update +RUN DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata +RUN DEBIAN_FRONTEND=noninteractive eatmydata \ + apt install -y --no-install-recommends \ + bison \ + build-essential \ + ca-certificates \ + clang \ + flex \ + git -- cgit v1.2.3-55-g7522