aboutsummaryrefslogtreecommitdiff
path: root/tests/docker
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2017-06-21 14:21:33 +0100
committerAlex Bennée <alex.bennee@linaro.org>2017-06-21 15:01:48 +0100
commit7af25f9f6a35ff18e7a20401c4acca77572ee9e4 (patch)
tree0ebe150b3473bd1a8c0b1f39d7dd258b975a6748 /tests/docker
parent8dfaf23ae1f2273a9730a9b309cc8471269bb524 (diff)
downloadqemu-7af25f9f6a35ff18e7a20401c4acca77572ee9e4.zip
qemu-7af25f9f6a35ff18e7a20401c4acca77572ee9e4.tar.gz
qemu-7af25f9f6a35ff18e7a20401c4acca77572ee9e4.tar.bz2
docker: update qemu:debian base following stretch release
Debian has now released Stretch as its new stable. As we track debian:stable-slim this has a few consequences. For one thing we can now drop the emdebian hacks as cross compilers are part of the official repositories now. However we do loose the ability to build against powerpc (not ppc64) since that is no longer a release architecture. Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'tests/docker')
-rw-r--r--tests/docker/dockerfiles/debian.docker8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/docker/dockerfiles/debian.docker b/tests/docker/dockerfiles/debian.docker
index 52bd799..4ca6eca 100644
--- a/tests/docker/dockerfiles/debian.docker
+++ b/tests/docker/dockerfiles/debian.docker
@@ -9,14 +9,6 @@
#
FROM debian:stable-slim
-# Setup some basic tools we need
-RUN apt update
-RUN apt install -yy curl aptitude
-
-# Setup Emdebian
-RUN echo "deb http://emdebian.org/tools/debian/ jessie main" >> /etc/apt/sources.list
-RUN curl http://emdebian.org/tools/debian/emdebian-toolchain-archive.key | apt-key add -
-
# Duplicate deb line as deb-src
RUN cat /etc/apt/sources.list | sed "s/deb/deb-src/" >> /etc/apt/sources.list