From c33ea5d15256ea14c7cff9f2553d90dda5a81435 Mon Sep 17 00:00:00 2001 From: Eduardo Barros Date: Wed, 18 Mar 2026 10:37:30 -0300 Subject: [PATCH] Create alias for php in Dockerfile Added a symbolic link for PHP alias. --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4ee9d7070..57ffce4ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,6 +43,9 @@ RUN apk add --no-cache \ php85-xmlwriter \ supervisor +# Create alias to php +RUN ln -s /usr/bin/php85 /usr/bin/php + # Configure nginx - http COPY config/nginx.conf /etc/nginx/nginx.conf # Configure nginx - default server