openvk/install/automated/docker/base-php-apache.Dockerfile
Alexander Minkin edf10c4248
Docker: add imagick to dependencies
I'm not sure if that's all we need to make it work, but I will solve
this issue step by step
2023-09-22 23:56:18 +03:00

23 lines
No EOL
443 B
Docker

ARG VERSION=8.1
FROM docker.io/php:${VERSION}-apache
COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/
USER root
RUN apt update; \
apt install -y \
git \
ffmpeg \
libsdl2-2.0-0 \
&& \
install-php-extensions \
gd \
zip \
intl \
yaml \
pdo_mysql \
rdkafka \
imagick \
&& \
rm -rf /var/lib/apt/lists/*