Skip to content

Commit 85109ce

Browse files
authored
Merge pull request #27 from appwrite/feat-update-extensions
Bump redis, maxminddb, zstd, brotli, xdebug extensions
2 parents dff34db + c70d781 commit 85109ce

File tree

4 files changed

+35
-39
lines changed

4 files changed

+35
-39
lines changed

.github/workflows/test.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Test container structure
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
env:
9+
REGISTRY: docker.io
10+
IMAGE_NAME: appwrite/base
11+
TAG: ${{ github.event.release.tag_name }}
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout the repo
18+
uses: actions/checkout@v3
19+
20+
- name: Setup container structure test
21+
run: |
22+
curl -LO https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64
23+
chmod +x container-structure-test-linux-amd64
24+
sudo mv container-structure-test-linux-amd64 /usr/local/bin/container-structure-test
25+
26+
- name: Run container structure test
27+
run: |
28+
docker build -t appwrite-base-test .
29+
container-structure-test test --image appwrite-base-test --config tests.yaml

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea

.travis.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
FROM php:8.2.14-cli-alpine3.19 as compile
22

3-
ENV PHP_REDIS_VERSION="5.3.7" \
3+
ENV PHP_REDIS_VERSION="6.0.2" \
44
PHP_MONGODB_VERSION="1.16.1" \
55
PHP_SWOOLE_VERSION="v5.1.2" \
66
PHP_IMAGICK_VERSION="3.7.0" \
77
PHP_YAML_VERSION="2.2.3" \
8-
PHP_MAXMINDDB_VERSION="v1.11.0" \
8+
PHP_MAXMINDDB_VERSION="v1.11.1" \
99
PHP_SCRYPT_VERSION="2.0.1" \
10-
PHP_ZSTD_VERSION="0.12.3" \
11-
PHP_BROTLI_VERSION="0.14.0" \
10+
PHP_ZSTD_VERSION="0.13.3" \
11+
PHP_BROTLI_VERSION="0.15.0" \
1212
PHP_SNAPPY_VERSION="c27f830dcfe6c41eb2619a374de10fd0597f4939" \
1313
PHP_LZ4_VERSION="2f006c3e4f1fb3a60d2656fc164f9ba26b71e995" \
14-
PHP_XDEBUG_VERSION="3.2.2"
14+
PHP_XDEBUG_VERSION="3.3.1"
1515

1616
RUN \
1717
apk add --no-cache --virtual .deps \

0 commit comments

Comments
 (0)