From f57b511186c7787e17ad958bb20ba206019e2049 Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Wed, 21 May 2025 17:47:18 +0900 Subject: [PATCH] Updated CentOS Stream to 10 version from 9 --- Dockerfiles/web-nginx-pgsql/centos/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfiles/web-nginx-pgsql/centos/Dockerfile b/Dockerfiles/web-nginx-pgsql/centos/Dockerfile index 6c0e37af6..a68e48352 100644 --- a/Dockerfiles/web-nginx-pgsql/centos/Dockerfile +++ b/Dockerfiles/web-nginx-pgsql/centos/Dockerfile @@ -51,6 +51,7 @@ RUN --mount=type=tmpfs,target=/var/lib/dnf/ \ php-xml \ postgresql \ shadow-utils \ + gzip \ supervisor" && \ microdnf -y install \ --disablerepo "*" \ @@ -117,7 +118,8 @@ RUN --mount=type=tmpfs,target=/var/lib/dnf/ \ chmod -R g=u /var/lib/php/session/ && \ microdnf -y remove \ findutils \ - glibc-locale-source + glibc-locale-source \ + gzip HEALTHCHECK --interval=1m30s --timeout=3s --retries=3 --start-period=40s --start-interval=5s \ CMD curl -f http://localhost:8080/ping || exit 1