From 667d0639888ff459192b235b072d3ca61cdeb6f8 Mon Sep 17 00:00:00 2001 From: Gertjan Krol Date: Thu, 8 Jun 2023 19:00:50 +0200 Subject: [PATCH] Added imagick to toolkit --- .forgejo/workflows/test-build.yaml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/test-build.yaml b/.forgejo/workflows/test-build.yaml index bdf1cf6..46b75c9 100644 --- a/.forgejo/workflows/test-build.yaml +++ b/.forgejo/workflows/test-build.yaml @@ -11,7 +11,7 @@ jobs: steps: - name: Check out repository uses: actions/checkout@v3 - - name: Build container + - name: Build container (8.2) run: docker build . --build-arg VERSION=8.2 -t php-toolkit-test:${{ github.ref_name }} - name: Image details run: docker image inspect php-toolkit-test:${{ github.ref_name }} diff --git a/Dockerfile b/Dockerfile index d7e0f9e..0e06216 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,6 @@ ARG VERSION FROM git.gertjankrol.nl/docker/php:${VERSION} RUN mv "$PHP_INI_DIR/php.ini-development" "$PHP_INI_DIR/php.ini" -RUN install-php-extensions xdebug +RUN install-php-extensions imagick xdebug RUN apk add --no-cache git nodejs npm \ No newline at end of file