From 0f9c6789bfba7aac6d736edb186475a89d6213dc Mon Sep 17 00:00:00 2001 From: Fascinated Date: Sat, 8 Jul 2023 00:47:22 +0100 Subject: [PATCH] i asked john, no idea what was changed --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 64b5a54..449cdbc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,14 +3,14 @@ FROM alpine:3.18.2 # Install dependencies RUN apk update && \ apk upgrade && \ - apk add --no-cache nginx php81 php81-fpm php81-pear && \ + apk add --no-cache nginx php81 php81-fpm php81-pear php81-gd && \ rm -rf /var/cache/apk/* # Install Imagick RUN apk add php82-pecl-imagick --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community RUN apk --update add imagemagick -RUN pecl install imagick -RUN docker-php-ext-enable imagick +RUN pecl install imagick && \ + docker-php-ext-enable imagick # Set up nginx COPY ./docker/nginx.conf /etc/nginx/nginx.conf