From a631498f2a7fd36321e6b4629ff3e614a81c3b2d Mon Sep 17 00:00:00 2001 From: MargaritaMonogarova Date: Fri, 23 Jan 2026 18:22:26 +0300 Subject: [PATCH 1/2] Dockerfile add pdo_pgsql --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7b65cbd..8223e78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ ARG PHP_VERSION=8.5 FROM php:${PHP_VERSION}-cli-bookworm -ENV UID=10001 -ENV GID=10001 +ENV UID=1001 +ENV GID=1001 ENV LC_ALL=C.UTF-8 @@ -16,6 +16,7 @@ RUN < Date: Sat, 24 Jan 2026 22:51:40 +0300 Subject: [PATCH 2/2] Fix user --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8223e78..040ffd5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ ARG PHP_VERSION=8.5 FROM php:${PHP_VERSION}-cli-bookworm -ENV UID=1001 -ENV GID=1001 +ENV UID=10001 +ENV GID=10001 ENV LC_ALL=C.UTF-8