From 50c8994f57913116a3665f2d76691aeef32c104f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Guillot?= Date: Fri, 30 Jun 2023 19:47:27 -0700 Subject: [PATCH] Add /usr/bin/php symlink in Docker image --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 26dd9ec93..1a9b9e71e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,8 @@ RUN apk --no-cache --update add \ php82-pdo php82-pdo_mysql php82-pdo_sqlite php82-pdo_pgsql php82-mbstring php82-session php82-bcmath \ php82-gd php82-openssl php82-sockets php82-posix php82-ldap php82-simplexml && \ rm -rf /var/www/localhost && \ - rm -f /etc/php82/php-fpm.d/www.conf + rm -f /etc/php82/php-fpm.d/www.conf && \ + ln -s /usr/bin/php82 /usr/bin/php ADD . /var/www/app ADD docker/ /