From c7dcf656444b6feed08ac3a4616efe5942ddb96c Mon Sep 17 00:00:00 2001 From: Dale Davies Date: Mon, 27 Mar 2023 16:39:09 +0100 Subject: [PATCH] Force recreating of php symlink in xdebug dockerfile --- Dockerfile-xdebug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-xdebug b/Dockerfile-xdebug index 0fd288f..681dd97 100644 --- a/Dockerfile-xdebug +++ b/Dockerfile-xdebug @@ -43,7 +43,7 @@ RUN apk add --no-cache \ php81-xdebug # Create symlink for anything expecting to use "php". -RUN ln -s /usr/bin/php8 /usr/bin/php +RUN ln -s -f /usr/bin/php8 /usr/bin/php # Nginx config. COPY docker/nginx.conf /etc/nginx/nginx.conf