[DOCKER] Update PHP docker container to include ffmpeg, for the VideoEncoderPlugin

This commit is contained in:
Hugo Sales 2021-08-18 21:20:25 +01:00
parent 811caaadf9
commit 86bdc398c5
Signed by untrusted user: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
FROM php:8-fpm-alpine
RUN apk update && apk add git autoconf make gcc g++ file gettext-dev icu-dev zlib-dev libpng-dev gmp-dev \
mariadb-dev mariadb-client postgresql-dev postgresql-client vips-dev composer > /dev/null
mariadb-dev mariadb-client postgresql-dev postgresql-client vips-dev composer ffmpeg > /dev/null
ARG MAKEFLAGS="-j$(cat /proc/cpuinfo | grep processor | wc -l)"