diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2022-09-14 16:59:33 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2022-09-20 16:27:28 +0100 |
commit | 6ede0767bac84d0b722c3fcc37ec102d5418f09b (patch) | |
tree | 20174e674e9cabf372e0ed50a3a8108a6112880c /tests/docker/dockerfiles | |
parent | 376c4109af99463aab8f33fb68a298d72da2b59b (diff) | |
download | qemu-6ede0767bac84d0b722c3fcc37ec102d5418f09b.zip qemu-6ede0767bac84d0b722c3fcc37ec102d5418f09b.tar.gz qemu-6ede0767bac84d0b722c3fcc37ec102d5418f09b.tar.bz2 |
tests/docker: update and flatten debian-sparc64-cross
Update to the latest stable Debian. While we are at it flatten into a
single dockerfile. We really don't need the rest of the stuff from
the QEMU base image just to compile test images.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20220914155950.804707-14-alex.bennee@linaro.org>
Diffstat (limited to 'tests/docker/dockerfiles')
-rw-r--r-- | tests/docker/dockerfiles/debian-sparc64-cross.docker | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/docker/dockerfiles/debian-sparc64-cross.docker b/tests/docker/dockerfiles/debian-sparc64-cross.docker index f4bb9b5..8d3d306 100644 --- a/tests/docker/dockerfiles/debian-sparc64-cross.docker +++ b/tests/docker/dockerfiles/debian-sparc64-cross.docker @@ -1,12 +1,14 @@ # # Docker cross-compiler target # -# This docker target builds on the debian Buster base image. +# This docker target builds on the Debian Bullseye base image. # -FROM qemu/debian10 +FROM docker.io/library/debian:11-slim -RUN apt update && \ - DEBIAN_FRONTEND=noninteractive eatmydata \ - apt install -y --no-install-recommends \ +RUN export DEBIAN_FRONTEND=noninteractive && \ + apt-get update && \ + apt-get install -y eatmydata && \ + eatmydata apt-get dist-upgrade -y && \ + eatmydata apt-get install --no-install-recommends -y \ gcc-sparc64-linux-gnu \ libc6-dev-sparc64-cross |