diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2017-07-17 21:31:33 -0300 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2017-07-18 10:54:30 +0100 |
commit | 24044d48251fc9cd163e005a3d41d299819d2092 (patch) | |
tree | 8e73ad5d8e11faed95e5d467d417f75682b8e1d8 /tests/docker/dockerfiles/debian.docker | |
parent | ed7023b05b06a38fc32ca5ef9a8c49d6fcbad572 (diff) |
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/debian.docker')
-rw-r--r-- | tests/docker/dockerfiles/debian.docker | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/docker/dockerfiles/debian.docker b/tests/docker/dockerfiles/debian.docker deleted file mode 100644 index 10953b2425..0000000000 --- a/tests/docker/dockerfiles/debian.docker +++ /dev/null @@ -1,20 +0,0 @@ -# -# Docker multiarch cross-compiler target -# -# This docker target is builds on Debian and Emdebian's 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:stable-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 \ - ca-certificates build-essential clang git bison flex |