Skip to content

Commit 69fc6fc

Browse files
committed
Update Dockerfiles to use Alpine 3.16 for PHP test and extension images
- Changed base image from Alpine 3.21 to Alpine 3.16 in Dockerfiles for PHP test images (NTS and ZTS modes) and extension images (NTS and ZTS modes). - Updated the Dockerfile for building Alpine libs toolchain images to also use Alpine 3.16.
1 parent cc5a3ae commit 69fc6fc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/Dockerfile.alpine-php-test-nts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ARG PHP_VERSION=8.3
66
ARG PHP_SRC_REF=PHP-${PHP_VERSION}
77

8-
FROM alpine:3.21 AS base
8+
FROM alpine:3.16 AS base
99
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
1010

1111
ENV TZ=Etc/UTC \

.github/workflows/Dockerfile.alpine-php-test-zts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ARG PHP_VERSION=8.3
66
ARG PHP_SRC_REF=PHP-${PHP_VERSION}
77

8-
FROM alpine:3.21 AS base
8+
FROM alpine:3.16 AS base
99
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
1010

1111
ENV TZ=Etc/UTC \

.github/workflows/Dockerfile.build-extension-alpine-nts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ARG PHP_VERSION=8.3
66
ARG PHP_SRC_REF=PHP-${PHP_VERSION}
77

8-
FROM alpine:3.21 AS base
8+
FROM alpine:3.16 AS base
99
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
1010

1111
ENV TZ=Etc/UTC \

.github/workflows/Dockerfile.build-extension-alpine-zts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ARG PHP_VERSION=8.3
66
ARG PHP_SRC_REF=PHP-${PHP_VERSION}
77

8-
FROM alpine:3.21 AS base
8+
FROM alpine:3.16 AS base
99
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
1010

1111
ENV TZ=Etc/UTC \

.github/workflows/Dockerfile.build-libs-alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Alpine-based image for building Go shared libraries with custom Go fork
22
# that supports c-shared buildmode on musl-based systems.
3-
FROM alpine:3.21
3+
FROM alpine:3.16
44

55
ARG GO_RELEASE_TAG=devel-go1.27-tlsdesc.1
66

0 commit comments

Comments
 (0)