blob: 9447bdb130a2917fa6db5c0ff71c93acd1b985ad (
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
|
FROM fedora:31
RUN dnf -y install \
abattis-cantarell-fonts \
cairo-devel \
cairo-gobject-devel \
ccache \
clang \
clang-analyzer \
desktop-file-utils \
diffutils \
fontconfig-devel \
fribidi-devel \
gcc \
gcc-c++ \
gettext \
git \
glib2-devel \
glib2-static \
glibc-devel \
glibc-headers \
glibc-langpack-en \
gobject-introspection-devel \
google-droid-sans-fonts \
gtk-doc \
harfbuzz-devel \
hicolor-icon-theme \
itstool \
libasan \
lcov \
libthai-devel \
libubsan \
libXft-devel \
ninja-build \
python3 \
python3-jinja2 \
python3-pip \
python3-pygments \
python3-wheel \
redhat-rpm-config \
thai-scalable-waree-fonts \
&& dnf clean all
RUN pip3 install meson==0.54.3
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
|