mirror of https://github.com/xemu-project/xemu.git
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
|
@ -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
|
||||
|
|
|
@ -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…
Reference in New Issue