blob: 0d9d4268bd3bfd758ac473cd5a05afa71b53c6c4 (
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
60
61
62
63
64
65
66
|
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 \
libattr-devel \
libffi-devel \
libmount-devel \
libselinux-devel \
libtool \
libXfixes-devel \
libXft-devel \
libxml2-devel \
libxslt \
make \
mesa-libGL-devel \
ninja-build \
openssl-devel \
pcre-devel \
python3 \
python3-devel \
python3-pip \
python3-wheel \
readline-devel \
redhat-rpm-config \
sqlite-devel \
systemtap-sdt-devel \
zlib-devel \
&& dnf clean all
RUN pip3 install meson==0.49.2
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
ENV PYENV_ROOT /home/user/.pyenv
ENV PATH="${PYENV_ROOT}/shims:${PYENV_ROOT}/bin:${PATH}"
ENV PYTHON_CONFIGURE_OPTS="--enable-shared"
RUN curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash
RUN pyenv install 3.5.6
|