]> Git Repo - qemu.git/blob - tests/docker/dockerfiles/debian8.docker
tests/docker: Install Sphinx in the Debian images
[qemu.git] / tests / docker / dockerfiles / debian8.docker
1 #
2 # Docker multiarch cross-compiler target
3 #
4 # This docker target is builds on Debian and Emdebian's cross compiler targets
5 # to build distro with a selection of cross compilers for building test binaries.
6 #
7 # On its own you can't build much but the docker-foo-cross targets
8 # build on top of the base debian image.
9 #
10 FROM debian:jessie-slim
11
12 MAINTAINER Philippe Mathieu-Daudé <[email protected]>
13
14 # Duplicate deb line as deb-src
15 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list
16
17 # Setup some basic tools we need
18 RUN apt-get update && \
19     DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata
20 RUN DEBIAN_FRONTEND=noninteractive eatmydata \
21     apt-get install -y --no-install-recommends \
22         bison \
23         binutils-multiarch \
24         build-essential \
25         ca-certificates \
26         clang \
27         curl \
28         flex \
29         gettext \
30         git \
31         gnupg \
32         pkg-config \
33         python-minimal
34
This page took 0.026665 seconds and 4 git commands to generate.