From 54fcfce35164cb877f776c47a7102e3ee12539e1 Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Mon, 9 May 2022 23:50:36 +0200 Subject: [PATCH] Add missing PHP ext to Docker setup --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 05fd24bb..0c748eba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,9 @@ ARG UID=1000 ARG GID=1000 COPY --from=build-composer --chown=${UID}:${GID} /usr/bin/composer /usr/bin/composer RUN apk add --no-cache unzip +ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ +RUN chmod +x /usr/local/bin/install-php-extensions && \ + install-php-extensions gd bcmath WORKDIR /srv COPY artisan composer.json ./ COPY database ./database