diff options
| author | Philippe Mathieu-Daudé | 2017-07-18 02:31:33 +0200 |
|---|---|---|
| committer | Alex Bennée | 2017-07-18 11:54:30 +0200 |
| commit | 24044d48251fc9cd163e005a3d41d299819d2092 (patch) | |
| tree | 8e73ad5d8e11faed95e5d467d417f75682b8e1d8 /tests/docker/dockerfiles/debian9.docker | |
| parent | docker: add debug tools to travis.docker (diff) | |
| download | qemu-24044d48251fc9cd163e005a3d41d299819d2092.tar.gz qemu-24044d48251fc9cd163e005a3d41d299819d2092.tar.xz qemu-24044d48251fc9cd163e005a3d41d299819d2092.zip | |
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é <f4bug@amsat.org>
[AJB: extend commit msg]
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'tests/docker/dockerfiles/debian9.docker')
| -rw-r--r-- | tests/docker/dockerfiles/debian9.docker | 25 |
1 files changed, 25 insertions, 0 deletions
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 |
