From fb6ff74f4ac9e52f3c753e73800dc1e4384ff1d4 Mon Sep 17 00:00:00 2001 From: Fabian Gruber Date: Tue, 5 Nov 2024 17:58:16 +0100 Subject: [PATCH 1/2] chore: update php to 8.3.13 and dependencies --- Dockerfile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 96b994b..cfa0102 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,12 @@ -FROM php:8.3.11-cli-alpine3.20 as compile +ARG BASEIMAGE="php:8.3.13-cli-alpine3.20" -ENV PHP_REDIS_VERSION="6.0.2" \ - PHP_MONGODB_VERSION="1.19.3" \ - PHP_SWOOLE_VERSION="v5.1.3" \ +FROM $BASEIMAGE as compile + +ENV PHP_REDIS_VERSION="6.1.0" \ + PHP_MONGODB_VERSION="1.20.0" \ + PHP_SWOOLE_VERSION="v5.1.5" \ PHP_IMAGICK_VERSION="3.7.0" \ - PHP_YAML_VERSION="2.2.3" \ + PHP_YAML_VERSION="2.2.4" \ PHP_MAXMINDDB_VERSION="v1.11.1" \ PHP_SCRYPT_VERSION="2.0.1" \ PHP_ZSTD_VERSION="0.13.3" \ @@ -149,7 +151,7 @@ RUN \ ./configure && \ make && make install -FROM php:8.3.11-cli-alpine3.20 as final +FROM $BASEIMAGE as final LABEL maintainer="team@appwrite.io" From 191e4b7d0845b896db4629b4bca403094ebb66ed Mon Sep 17 00:00:00 2001 From: Fabian Gruber Date: Thu, 7 Nov 2024 17:51:49 +0100 Subject: [PATCH 2/2] run tests --- .github/workflows/test.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2ff46c0..3712ce8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,9 +1,6 @@ name: Test container structure -on: - pull_request: - branches: - - main +on: [pull_request] env: REGISTRY: docker.io