mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
3760051169
Use the latest base image.
18 lines
359 B
Docker
18 lines
359 B
Docker
FROM registry.gitlab.gnome.org/gnome/gtk/fedora-base:v28
|
|
|
|
RUN dnf -y install \
|
|
python3-jinja2 \
|
|
python3-markdown \
|
|
python3-pygments \
|
|
python3-toml \
|
|
python3-typogrify
|
|
|
|
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
|