Skip to content

Commit 91575f9

Browse files
Merge pull request #35 from appwrite/update-redis-to-6.1.0
chore: update php to 8.3.13 and dependencies
2 parents 3a3ab99 + 191e4b7 commit 91575f9

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/workflows/test.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Test container structure
22

3-
on:
4-
pull_request:
5-
branches:
6-
- main
3+
on: [pull_request]
74

85
env:
96
REGISTRY: docker.io

Dockerfile

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
FROM php:8.3.11-cli-alpine3.20 as compile
1+
ARG BASEIMAGE="php:8.3.13-cli-alpine3.20"
22

3-
ENV PHP_REDIS_VERSION="6.0.2" \
4-
PHP_MONGODB_VERSION="1.19.3" \
5-
PHP_SWOOLE_VERSION="v5.1.3" \
3+
FROM $BASEIMAGE as compile
4+
5+
ENV PHP_REDIS_VERSION="6.1.0" \
6+
PHP_MONGODB_VERSION="1.20.0" \
7+
PHP_SWOOLE_VERSION="v5.1.5" \
68
PHP_IMAGICK_VERSION="3.7.0" \
7-
PHP_YAML_VERSION="2.2.3" \
9+
PHP_YAML_VERSION="2.2.4" \
810
PHP_MAXMINDDB_VERSION="v1.11.1" \
911
PHP_SCRYPT_VERSION="2.0.1" \
1012
PHP_ZSTD_VERSION="0.13.3" \
@@ -149,7 +151,7 @@ RUN \
149151
./configure && \
150152
make && make install
151153

152-
FROM php:8.3.11-cli-alpine3.20 as final
154+
FROM $BASEIMAGE as final
153155

154156
LABEL maintainer="[email protected]"
155157

0 commit comments

Comments
 (0)