Smart 🧠 Fullstack
45 subscribers
170 photos
11 videos
13 files
155 links
About channel: everyday developer hints.

for (💲Coders as 💲Student):
echo("Hello 💲Student->name");
endfor;

Author: @BakirovRoman
Download Telegram
Some docker PHP container errors:

Error:
=> ERROR [php stage-0 5/9] RUN docker-php-ext-install curl
...
1.877 configure: error: Package requirements (libcurl >= 7.29.0) were not met:
...

Solution:
RUN apt -y install libcurl4-openssl-dev


Error:
=> ERROR [php stage-0  8/10] RUN docker-php-ext-install pdo_pgsql
...
1.853 configure: error: Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path
...

Solution:
RUN apt -y install libpq-dev


Error:
 => ERROR [php stage-0  9/10] RUN docker-php-ext-install zip
...
1.930 configure: error: Package requirements (libzip >= 0.11 libzip != 1.3.1 libzip != 1.7.0) were not met:
...

Solution:
RUN apt -y install libzip-dev


Error:
 => ERROR [php stage-0 11/11] RUN docker-php-ext-install mbstring
...
1.758 configure: error: Package requirements (oniguruma) were not met:
...

Solution:
RUN apt -y install libonig-dev


#docker #php #error #errors #dockerfile