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
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

ARG ANONADDY_VERSION=1.3.3
ARG ANONADDY_VERSION=1.3.5
ARG ALPINE_VERSION=3.22

FROM crazymax/yasu:latest AS yasu
Expand All @@ -13,7 +13,7 @@ RUN apk --no-cache add \
curl \
gnupg \
gpgme \
imagemagick \
imagemagick-dev \
libgd \
mysql-client \
nginx \
Expand All @@ -35,7 +35,6 @@ RUN apk --no-cache add \
php83-openssl \
php83-pdo \
php83-pdo_mysql \
php83-pecl-imagick \
php83-phar \
php83-redis \
php83-session \
Expand Down Expand Up @@ -72,6 +71,8 @@ RUN apk --no-cache add \
&& echo "extension=gnupg.so" > /etc/php83/conf.d/60_gnupg.ini \
&& pecl83 install mailparse \
&& echo "extension=mailparse.so" > /etc/php83/conf.d/60_mailparse.ini \
&& pecl83 install imagick \
&& echo "extension=imagick.so" > /etc/php83/conf.d/50_imagick.ini \
&& apk del build-dependencies \
&& rm -rf /tmp/* /var/www/*

Expand Down