इस समस्या में मेरी कोई मदद कर सकता है।
जब मैं लार्वा एप्लिकेशन के लिए डॉकटर से एक डॉकटर छवि बनाने की कोशिश करता हूं तो मुझे यह त्रुटि मिलती है:
Oniguruma के लिए जाँच ... कोई कॉन्फ़िगर नहीं: त्रुटि: पैकेज आवश्यकताएँ (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.
कमांड '/ bin / sh -c docker-php-ext-install pdo mbstring' ने एक गैर-शून्य कोड लौटाया: 1
यहाँ मेरा डॉकफ़ाइल है:
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
और डॉकफाइल बनाने के लिए डॉकटर कमांड
sudo docker build -t test .