From dbade9d8453e0420d37f82113933eb8bf822b142 Mon Sep 17 00:00:00 2001 From: Don Hardman Date: Sat, 16 Nov 2024 20:10:22 +0700 Subject: [PATCH] Fix Dockerfile to build proper version of PHP --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5c5454c..3e4d1fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG BUILD_DEV=0 COPY . /src RUN apk add bash && \ cd /src && \ - ./build-alpine 8.2.8 0 $BUILD_DEV && \ + ./build-alpine 8.3.13 0 $BUILD_DEV && \ mv build/dist/bin/php /usr/bin/manticore-executor && \ ln -s /usr/bin/manticore-executor /usr/bin/php && \ cd ../..