Puede alguien ayudarme con este problema.
Cuando intento crear una imagen acoplable desde un dockerfile para la aplicación laravel, aparece este error:
buscando oniguruma ... sin configurar: error: No se cumplieron los requisitos del paquete (oniguruma):
No package 'oniguruma' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables ONIG_CFLAGS and ONIG_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.
El comando '/ bin / sh -c docker-php-ext-install pdo mbstring' devolvió un código distinto de cero: 1
Aquí está mi Dockerfile:
FROM php:7
RUN apt-get update -y && apt-get install -y openssl zip unzip git
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
RUN docker-php-ext-install pdo mbstring
WORKDIR /app
COPY app /app # this copies all the app files to a folder called `app`
RUN composer install
CMD php artisan serve --host=0.0.0.0 --port=8000
EXPOSE 8000
y el comando docker para construir el Dockerfile
sudo docker build -t test .
fuente
Lo que @kalatabe dijo es correcto. Pero en caso de que quiera asegurarse de que se instala mbstring, también puede agregar
libonig-dev
a suapt-get install
fuente