46 - Add zip extension to CI image
Some checks failed
CI / ci (push) Failing after 1s
CI / ci (pull_request) Has been cancelled

This commit is contained in:
myrmidex 2026-08-17 14:58:10 +02:00
parent 1b6effb5d0
commit 0988f40dac
3 changed files with 6 additions and 5 deletions

View file

@ -10,7 +10,7 @@ jobs:
ci:
runs-on: docker
container:
image: forge.lvl0.xyz/lvl0/dishplanner-ci:php8.3-1
image: forge.lvl0.xyz/lvl0/dishplanner-ci:php8.3-2
steps:
- uses: https://data.forgejo.org/actions/checkout@v4

View file

@ -18,7 +18,7 @@ jobs:
include:
- name: dishplanner-ci
file: docker/build/Dockerfile.ci
version: php8.3-1
version: php8.3-2
steps:
- uses: https://data.forgejo.org/actions/checkout@v4

View file

@ -3,8 +3,8 @@
# or cache extension is needed.
#
# Published as dishplanner-ci:php8.3-<revision>. Bump the revision in the tag
# and in .forgejo/workflows/ci.yml whenever this file changes (runners cache
# mutable tags and will not re-pull them).
# (.forgejo/workflows/images.yml) and in .forgejo/workflows/ci.yml whenever
# this file changes (runners cache mutable tags and will not re-pull them).
#
# Debian-based rather than Alpine to avoid the DNS resolution timeouts against
# codeload.github.com that the Alpine base hit during composer install.
@ -19,7 +19,8 @@ RUN install-php-extensions \
dom \
xml \
fileinfo \
pcntl
pcntl \
zip
# git is needed by the checkout action; nodejs runs the Forgejo JavaScript
# actions (checkout, cache); unzip lets Composer extract dist archives.