Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cloudflared/Dockerfile
Original file line number Diff line number Diff line change
@@ -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} \
Expand Down
2 changes: 1 addition & 1 deletion php/Dockerfile-swoole
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion php/Dockerfile.php5
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion php/Dockerfile.php7
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion xrayr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM golang:1.25-alpine AS builder
FROM golang:1.26-alpine AS builder
WORKDIR /app
COPY . .

Expand Down