46 - Add zip extension to CI image
This commit is contained in:
parent
1b6effb5d0
commit
0988f40dac
3 changed files with 6 additions and 5 deletions
|
|
@ -10,7 +10,7 @@ jobs:
|
||||||
ci:
|
ci:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: forge.lvl0.xyz/lvl0/dishplanner-ci:php8.3-1
|
image: forge.lvl0.xyz/lvl0/dishplanner-ci:php8.3-2
|
||||||
steps:
|
steps:
|
||||||
- uses: https://data.forgejo.org/actions/checkout@v4
|
- uses: https://data.forgejo.org/actions/checkout@v4
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ jobs:
|
||||||
include:
|
include:
|
||||||
- name: dishplanner-ci
|
- name: dishplanner-ci
|
||||||
file: docker/build/Dockerfile.ci
|
file: docker/build/Dockerfile.ci
|
||||||
version: php8.3-1
|
version: php8.3-2
|
||||||
steps:
|
steps:
|
||||||
- uses: https://data.forgejo.org/actions/checkout@v4
|
- uses: https://data.forgejo.org/actions/checkout@v4
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@
|
||||||
# or cache extension is needed.
|
# or cache extension is needed.
|
||||||
#
|
#
|
||||||
# Published as dishplanner-ci:php8.3-<revision>. Bump the revision in the tag
|
# 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
|
# (.forgejo/workflows/images.yml) and in .forgejo/workflows/ci.yml whenever
|
||||||
# mutable tags and will not re-pull them).
|
# 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
|
# Debian-based rather than Alpine to avoid the DNS resolution timeouts against
|
||||||
# codeload.github.com that the Alpine base hit during composer install.
|
# codeload.github.com that the Alpine base hit during composer install.
|
||||||
|
|
@ -19,7 +19,8 @@ RUN install-php-extensions \
|
||||||
dom \
|
dom \
|
||||||
xml \
|
xml \
|
||||||
fileinfo \
|
fileinfo \
|
||||||
pcntl
|
pcntl \
|
||||||
|
zip
|
||||||
|
|
||||||
# git is needed by the checkout action; nodejs runs the Forgejo JavaScript
|
# git is needed by the checkout action; nodejs runs the Forgejo JavaScript
|
||||||
# actions (checkout, cache); unzip lets Composer extract dist archives.
|
# actions (checkout, cache); unzip lets Composer extract dist archives.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue