Skip to content

Commit

Permalink
Merge pull request #35 from appwrite/update-redis-to-6.1.0
Browse files Browse the repository at this point in the history
chore: update php to 8.3.13 and dependencies
  • Loading branch information
christyjacob4 authored Nov 7, 2024
2 parents 3a3ab99 + 191e4b7 commit 91575f9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Test container structure

on:
pull_request:
branches:
- main
on: [pull_request]

env:
REGISTRY: docker.io
Expand Down
14 changes: 8 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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" \
Expand Down Expand Up @@ -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="[email protected]"

Expand Down

0 comments on commit 91575f9

Please sign in to comment.