Skip to content

Commit

Permalink
ci(docker): adds php8.4 image version
Browse files Browse the repository at this point in the history
  • Loading branch information
byteplow committed Feb 27, 2025
1 parent f505389 commit f80f144
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
37 changes: 37 additions & 0 deletions ci/dockerimage/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,43 @@ RUN apt-get update \



FROM docker.io/library/ubuntu:noble as php8.4
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y \
software-properties-common \
gnupg2 \
apt-transport-https \
lsb-release \
ca-certificates \
&& add-apt-repository ppa:ondrej/php \
&& apt-get update \
&& DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y \
php8.4 \
php8.4-apcu \
php8.4-bcmath \
php8.4-curl \
php8.4-fpm \
php8.4-gd \
php8.4-igbinary \
php8.4-imagick \
php8.4-intl \
php8.4-ldap \
php8.4-mbstring \
php8.4-mysql \
php8.4-phpdbg \
php8.4-redis \
php8.4-soap \
php8.4-xml \
php8.4-yaml \
php8.4-zip \
&& rm -rf /var/lib/apt/lists/* \
&& ln -s /etc/php/8.4 /etc/php/default \
&& ln -s /usr/sbin/php-fpm8.4 /usr/sbin/php-fpm \
&& echo "php8.4" > /etc/php/container-php-package-name




FROM hairyhenderson/gomplate:stable-alpine as gomplate

FROM ${PHP_IMAGE} as base
Expand Down
1 change: 1 addition & 0 deletions ci/gitlab-ci/build_jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ docker_build_test:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
before_script:
- export DOCKER_BUILDKIT=0
- export PROGRESS_NO_TRUNC=1 # stop docker from truncating aws image names
Expand Down

0 comments on commit f80f144

Please sign in to comment.