docker: update qemu:debian base following stretch release
authorAlex Bennée <alex.bennee@linaro.org>
Wed, 21 Jun 2017 13:21:33 +0000 (14:21 +0100)
committerAlex Bennée <alex.bennee@linaro.org>
Wed, 21 Jun 2017 14:01:48 +0000 (15:01 +0100)
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>
tests/docker/dockerfiles/debian.docker

index 52bd79938e5baadb5a283d6d4c46e7b70c45285d..4ca6ecaad0dc80cfa9fbe1fd45734b68ba1b501e 100644 (file)
@@ -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