Merge pull request #6745 from wallabag/impr/dockerdev

Update dev docker base image to php:8.1-fpm
This commit is contained in:
Kevin Decherf 2023-07-23 12:40:32 +02:00 committed by GitHub
commit 724fea0aea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
FROM php:7.4-fpm AS rootless FROM php:8.1-fpm AS rootless
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive
ARG NODE_VERSION=16 ARG NODE_VERSION=16
@ -33,7 +33,8 @@ RUN apt-get update && apt-get install -y \
zlib1g-dev \ zlib1g-dev \
git \ git \
build-essential \ build-essential \
nodejs nodejs \
npm
RUN docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp RUN docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp
RUN docker-php-ext-install -j "$(nproc)" \ RUN docker-php-ext-install -j "$(nproc)" \
bcmath \ bcmath \