2021-02-15 18:02:53 +00:00
|
|
|
FROM registry.gitlab.gnome.org/gnome/gtk/fedora-base:v28
|
2020-05-25 16:45:29 +00:00
|
|
|
|
2021-02-15 16:43:10 +00:00
|
|
|
RUN dnf -y install \
|
|
|
|
python3-jinja2 \
|
|
|
|
python3-markdown \
|
|
|
|
python3-pygments \
|
|
|
|
python3-toml \
|
|
|
|
python3-typogrify
|
2020-05-25 16:45:29 +00:00
|
|
|
|
|
|
|
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
|