Update ci/docker/fedora to work with Rawhide 44

This commit is contained in:
Łukasz Langa
2025-10-21 16:41:09 +02:00
parent 58d9363f02
commit af72120318

View File

@@ -15,7 +15,7 @@ RUN yum install -y \
openssl-devel \ openssl-devel \
openssh-server \ openssh-server \
git-daemon \ git-daemon \
java-1.8.0-openjdk-headless \ java-21-openjdk-headless \
sudo \ sudo \
python3 \ python3 \
valgrind \ valgrind \
@@ -46,7 +46,7 @@ RUN if [ "${UID}" != "" ]; then USER_ARG="--uid ${UID}"; fi && \
useradd ${USER_ARG} --gid libgit2 --shell /bin/bash --create-home libgit2 useradd ${USER_ARG} --gid libgit2 --shell /bin/bash --create-home libgit2
FROM adduser AS configure FROM adduser AS configure
ENV PKG_CONFIG_PATH /usr/local/lib/pkgconfig ENV PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
RUN mkdir /var/run/sshd RUN mkdir -p /var/run/sshd
RUN echo "/usr/local/lib" > /etc/ld.so.conf.d/local && \ RUN echo "/usr/local/lib" > /etc/ld.so.conf.d/local && \
ldconfig ldconfig