Updated PostgreSQL libs to 16 version

This commit is contained in:
Alexey Pustovalov
2024-05-10 19:24:20 +09:00
parent 6edbad4d40
commit c9721853fb
13 changed files with 119 additions and 35 deletions

View File

@ -49,16 +49,35 @@ RUN --mount=type=tmpfs,target=/var/lib/dnf/ \
findutils \
glibc-locale-source \
supervisor" && \
dnf -y install epel-release && \
dnf -y module enable php:8.0 && \
dnf -y install \
--disablerepo "*" \
--enablerepo "extras" \
--setopt=tsflags=nodocs \
--setopt=install_weak_deps=False \
--setopt=keepcache=False \
--best epel-release && \
dnf -y module enable \
--disablerepo "*" \
--enablerepo "appstream" \
--setopt=tsflags=nodocs \
--setopt=install_weak_deps=False \
--setopt=keepcache=False \
postgresql:16 php:8.2 && \
dnf -y install \
--disablerepo "*" \
--enablerepo "${REPOLIST}" \
--setopt=tsflags=nodocs \
--setopt=install_weak_deps=False \
--setopt=keepcache=False \
--best ${INSTALL_PKGS} && \
dnf -y reinstall \
--disablerepo "*" \
--enablerepo "${REPOLIST}" \
--enablerepo "baseos" \
--setopt=tsflags=nodocs \
--setopt=install_weak_deps=False \
--setopt=keepcache=0 \
--setopt=keepcache=False \
--best \
${INSTALL_PKGS} && \
tzdata && \
groupadd \
--system \
--gid 1995 \