diff --git a/cloudflared/Dockerfile b/cloudflared/Dockerfile index 032e200..e4abd62 100644 --- a/cloudflared/Dockerfile +++ b/cloudflared/Dockerfile @@ -1,7 +1,7 @@ # use a builder image for building cloudflare ARG TARGET_GOOS ARG TARGET_GOARCH -FROM golang:1.24.4 AS builder +FROM golang:1.26.4 AS builder ENV GO111MODULE=on \ CGO_ENABLED=0 \ TARGET_GOOS=${TARGET_GOOS} \ diff --git a/php/Dockerfile-swoole b/php/Dockerfile-swoole index 98292c0..07e247a 100644 --- a/php/Dockerfile-swoole +++ b/php/Dockerfile-swoole @@ -1,4 +1,4 @@ -FROM php:8.4-fpm-alpine AS builder +FROM php:8.5-fpm-alpine AS builder COPY --from=composer /usr/bin/composer /usr/bin/composer diff --git a/php/Dockerfile.php5 b/php/Dockerfile.php5 index 6707368..6f5ed61 100644 --- a/php/Dockerfile.php5 +++ b/php/Dockerfile.php5 @@ -1,2 +1,2 @@ -FROM php:5.6-fpm-alpine +FROM php:8.5-fpm-alpine COPY --from=composer /usr/bin/composer /usr/bin/composer \ No newline at end of file diff --git a/php/Dockerfile.php7 b/php/Dockerfile.php7 index ae29f63..7a5a51b 100644 --- a/php/Dockerfile.php7 +++ b/php/Dockerfile.php7 @@ -1,4 +1,4 @@ -FROM php:7.4-fpm-alpine +FROM php:8.5-fpm-alpine COPY --from=composer /usr/bin/composer /usr/bin/composer RUN apk update && apk add build-base autoconf libsodium-dev libzip-dev tzdata supervisor libpng-dev gmp-dev \ && cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \ diff --git a/xrayr/Dockerfile b/xrayr/Dockerfile index e66ac10..04b3a31 100644 --- a/xrayr/Dockerfile +++ b/xrayr/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM golang:1.25-alpine AS builder +FROM golang:1.26-alpine AS builder WORKDIR /app COPY . .