summaryrefslogtreecommitdiff
path: root/.gitlab-ci/minimal.Dockerfile
blob: 875c3e21173c7384b433eed2148f798ac42e5204 (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
FROM fedora:34

RUN dnf -y install \
    flex \
    bison \
    gcc \
    gcc-c++ \
    git \
    ninja-build \
    pkgconf \
    python3 \
    python3-devel \
    python3-pip \
    python3-wheel \
    libmount-devel \
 && dnf clean all

RUN pip3 install meson==0.55.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