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 8f2a070815
commit 6866cc7469
3 changed files with 23 additions and 1 deletions

View File

@ -63,6 +63,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

@ -62,7 +62,9 @@ RUN set -eux && \
tzdata \
iputils \
hostname \
libcurl-minimal \
libssh \
libpsl \
libbrotli \
libevent \
openldap \
libssh \
@ -95,6 +97,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

@ -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 \