PHP Docker install pecl V8JS (Debian Buster)
I tried to install V8JS with this Dockerfile FROM php:7.3-cli-buster RUN apt-get update -y --fix-missing && apt-get upgrade -y; # Install v8js RUN apt-get install -y libv8-dev RUN pecl install v8js RUN docker-php-ext-enable v8js but I got a configuration error:…