Skip to content

Commit

Permalink
Merge pull request #27 from appwrite/feat-update-extensions
Browse files Browse the repository at this point in the history
Bump redis, maxminddb, zstd, brotli, xdebug extensions
  • Loading branch information
abnegate authored Feb 15, 2024
2 parents dff34db + c70d781 commit 85109ce
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 39 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test container structure

on:
pull_request:
branches:
- main

env:
REGISTRY: docker.io
IMAGE_NAME: appwrite/base
TAG: ${{ github.event.release.tag_name }}

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v3

- name: Setup container structure test
run: |
curl -LO https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64
chmod +x container-structure-test-linux-amd64
sudo mv container-structure-test-linux-amd64 /usr/local/bin/container-structure-test
- name: Run container structure test
run: |
docker build -t appwrite-base-test .
container-structure-test test --image appwrite-base-test --config tests.yaml
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
34 changes: 0 additions & 34 deletions .travis.yml

This file was deleted.

10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
FROM php:8.2.14-cli-alpine3.19 as compile

ENV PHP_REDIS_VERSION="5.3.7" \
ENV PHP_REDIS_VERSION="6.0.2" \
PHP_MONGODB_VERSION="1.16.1" \
PHP_SWOOLE_VERSION="v5.1.2" \
PHP_IMAGICK_VERSION="3.7.0" \
PHP_YAML_VERSION="2.2.3" \
PHP_MAXMINDDB_VERSION="v1.11.0" \
PHP_MAXMINDDB_VERSION="v1.11.1" \
PHP_SCRYPT_VERSION="2.0.1" \
PHP_ZSTD_VERSION="0.12.3" \
PHP_BROTLI_VERSION="0.14.0" \
PHP_ZSTD_VERSION="0.13.3" \
PHP_BROTLI_VERSION="0.15.0" \
PHP_SNAPPY_VERSION="c27f830dcfe6c41eb2619a374de10fd0597f4939" \
PHP_LZ4_VERSION="2f006c3e4f1fb3a60d2656fc164f9ba26b71e995" \
PHP_XDEBUG_VERSION="3.2.2"
PHP_XDEBUG_VERSION="3.3.1"

RUN \
apk add --no-cache --virtual .deps \
Expand Down

0 comments on commit 85109ce

Please sign in to comment.