-
Notifications
You must be signed in to change notification settings - Fork 4
/
Dockerfile
46 lines (46 loc) · 975 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
FROM debian:stable
RUN apt-get update
RUN apt-get install -y git
RUN mkdir -p /opt/
WORKDIR /opt/
RUN git clone git://git.proxmox.com/git/pve-qemu
WORKDIR /opt/pve-qemu/
RUN git checkout 284d3b2cabef10362a574efe209d1d406f351dfa
RUN apt-get install -y make \
wget \
curl \
sed \
nano \
build-essential \
autotools-dev \
check \
debhelper \
libacl1-dev \
libaio-dev \
libcap-dev \
libcurl4-gnutls-dev \
libfdt-dev \
libglusterfs-dev \
libgnutls28-dev \
libiscsi-dev \
libjemalloc-dev \
libjpeg-dev \
libnuma-dev \
libpci-dev \
libpixman-1-dev \
librbd-dev \
libsdl1.2-dev \
libseccomp-dev \
libspice-protocol-dev \
libspice-server-dev \
libusb-1.0-0-dev \
libusbredirparser-dev \
python3-minimal \
python3-sphinx \
quilt texi2html \
texinfo \
uuid-dev \
xfslibs-dev \
lintian
RUN sed -i '/.*--target-list=.*/d' debian/rules
RUN make -j8