Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM docker.io/library/php:8-fpm
FROM docker.io/library/php:8.3-fpm
RUN apt-get update && apt-get upgrade -y && apt-get autoclean

ADD --chmod=0755 \
https://github.com/mlocati/docker-php-extension-installer/releases/download/2.6.3/install-php-extensions \
https://github.com/mlocati/docker-php-extension-installer/releases/download/2.7.28/install-php-extensions \
/usr/local/bin/

RUN install-php-extensions \
apcu \
bcmath \
Expand All @@ -15,8 +15,7 @@ RUN install-php-extensions \
gettext \
gmp \
iconv \
# TODO: Use latest released version, after https://github.com/Imagick/imagick/issues/640 is fixed
imagick/imagick@28f27044e435a2b203e32675e942eb8de620ee58 \
imagick \
intl \
ldap \
mbstring \
Expand Down