Fixed Office365 authentification. Using libcurl instead of libcurl-minimal

This commit is contained in:
Alexey Pustovalov 2023-09-28 01:37:16 +09:00
parent 91c187e870
commit 53dc4d1d7e
3 changed files with 23 additions and 1 deletions

View File

@ -64,6 +64,14 @@ RUN set -eux && \
--setopt=install_weak_deps=False \
--best \
${INSTALL_PKGS} && \
dnf -y install \
--disablerepo "*" \
--enablerepo "${REPOLIST}" \
--setopt=tsflags=nodocs \
--setopt=install_weak_deps=False \
--allowerasing \
--best \
libcurl && \
groupadd \
--system \
--gid 1995 \

View File

@ -63,7 +63,9 @@ RUN set -eux && \
tzdata \
iputils \
hostname \
libcurl-minimal \
libssh \
libpsl \
libbrotli \
libevent \
openldap \
libssh \
@ -96,6 +98,10 @@ RUN set -eux && \
--best \
--setopt=tsflags=nodocs \
tzdata && \
microdnf download libcurl && \
rpm -Uvh --nodeps --replacefiles "*curl*$( uname -i ).rpm" && \
microdnf remove -y libcurl-minimal && \
rm -rf "*curl*$( uname -i ).rpm" && \
groupadd \
--system \
--gid 1995 \

View File

@ -65,6 +65,14 @@ RUN set -eux && \
--setopt=install_weak_deps=False \
--best \
${INSTALL_PKGS} && \
dnf -y install \
--disablerepo "*" \
--enablerepo "${REPOLIST}" \
--setopt=tsflags=nodocs \
--setopt=install_weak_deps=False \
--allowerasing \
--best \
libcurl && \
groupadd \
--system \
--gid 1995 \