blob: 0330e3af585537bb008df8069e5718c2b92bcc64 (
plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
|
FROM fedora:29
RUN dnf -y install \
autoconf \
autoconf-archive \
automake \
bison \
cairo-devel \
cairo-gobject-devel \
ccache \
chrpath \
desktop-file-utils \
elfutils-libelf-devel \
flex \
fontconfig-devel \
freetype-devel \
gcc \
gcc-c++ \
gettext \
git \
glib2-devel \
glibc-devel \
glibc-headers \
gtk-doc \
itstool \
libtool \
libXft-devel \
libXfixes-devel \
libattr-devel \
libffi-devel \
libmount-devel \
libselinux-devel \
libxml2-devel \
libxslt \
make \
mesa-libGL-devel \
ninja-build \
pcre-devel \
python3 \
python3-devel \
python3-mako \
python3-markdown \
python3-pip \
python3-wheel \
redhat-rpm-config \
systemtap-sdt-devel \
zlib-devel \
&& dnf clean all
RUN pip3 install meson==0.49.0
ARG HOST_USER_ID=5555
ENV HOST_USER_ID ${HOST_USER_ID}
RUN useradd -u $HOST_USER_ID -ms /bin/bash user
USER user
WORKDIR /home/user
ENV LANG C.UTF-8
|