mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
docker: add debian/amd64 based on Stretch
By itself this doesn't add much to our coverage. However later patches will extend this image to include more bleeding edge libraries which are not yet widely available in distros. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> [AJB: extend commit msg] Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
This commit is contained in:
parent
2b1c10bdcf
commit
15288046e0
2 changed files with 19 additions and 0 deletions
|
@ -56,6 +56,7 @@ docker-image-%: $(DOCKER_FILES_DIR)/%.docker
|
|||
"BUILD","$*")
|
||||
|
||||
# Enforce dependancies for composite images
|
||||
docker-image-debian-amd64: docker-image-debian9
|
||||
docker-image-debian-armel-cross: docker-image-debian9
|
||||
docker-image-debian-armhf-cross: docker-image-debian9
|
||||
docker-image-debian-arm64-cross: docker-image-debian9
|
||||
|
|
18
tests/docker/dockerfiles/debian-amd64.docker
Normal file
18
tests/docker/dockerfiles/debian-amd64.docker
Normal file
|
@ -0,0 +1,18 @@
|
|||
#
|
||||
# Docker x86_64 target
|
||||
#
|
||||
# This docker target builds on the debian Stretch base image.
|
||||
#
|
||||
FROM qemu:debian9
|
||||
MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
|
||||
|
||||
RUN DEBIAN_FRONTEND=noninteractive eatmydata \
|
||||
apt-get build-dep -yy qemu
|
||||
|
||||
RUN DEBIAN_FRONTEND=noninteractive eatmydata \
|
||||
apt-get install -y --no-install-recommends \
|
||||
libbz2-dev \
|
||||
liblzo2-dev \
|
||||
librdmacm-dev \
|
||||
libsnappy-dev \
|
||||
libvte-dev
|
Loading…
Add table
Add a link
Reference in a new issue