mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 20:58:52 +00:00
39 lines
821 B
Docker
39 lines
821 B
Docker
|
FROM fedora:34
|
||
|
|
||
|
RUN dnf update -y \
|
||
|
&& dnf install -y \
|
||
|
clang-analyzer \
|
||
|
cppcheck \
|
||
|
dbus-x11 \
|
||
|
docbook-style-xsl \
|
||
|
gettext \
|
||
|
gi-docgen \
|
||
|
git \
|
||
|
glib2-devel \
|
||
|
gobject-introspection-devel \
|
||
|
lcov \
|
||
|
libasan \
|
||
|
libubsan \
|
||
|
libgcrypt-devel \
|
||
|
libxslt \
|
||
|
meson \
|
||
|
python3-dbus \
|
||
|
python3-gobject \
|
||
|
redhat-rpm-config \
|
||
|
swtpm \
|
||
|
swtpm-tools \
|
||
|
tpm2-abrmd \
|
||
|
tpm2-tss-devel \
|
||
|
vala \
|
||
|
valgrind-devel \
|
||
|
&& dnf clean all
|
||
|
|
||
|
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
|