We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RUN apt-get install -y autoconf wget build-essential --ignore-engines && wget https://pecl.php.net/get/redis-5.3.7.tgz && tar xzf redis-5.3.7.tgz && cd redis-5.3.7 && phpize && ./configure && make && make install && echo "extension=redis.so" >> /usr/local/etc/php/php.ini-development && echo "extension=redis.so" >> /usr/local/etc/php/php.ini-production && apt-get purge --autoremove -y autoconf wget build-essential && cd .. && rm redis-5.3.7.tgz && rm -rf redis-5.3.7
while executing this command codebuild fails and shows some error
ERROR: failed to solve: process "/bin/sh -c apt-get install -y autoconf wget build-essential --ignore-engines && wget https://pecl.php.net/get/redis-5.3.7.tgz && tar xzf redis-5.3.7.tgz && cd redis-5.3.7 && phpize && ./configure && make && make install && echo "extension=redis.so" >> /usr/local/etc/php/php.ini-development && echo "extension=redis.so" >> /usr/local/etc/php/php.ini-production && apt-get purge --autoremove -y autoconf wget build-essential && cd .. && rm redis-5.3.7.tgz && rm -rf redis-5.3.7" did not complete successfully: exit code: 100
pls help me to resolve this issue if someone knows
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Install PHP Redis
RUN apt-get install -y autoconf wget build-essential --ignore-engines &&
wget https://pecl.php.net/get/redis-5.3.7.tgz &&
tar xzf redis-5.3.7.tgz &&
cd redis-5.3.7 &&
phpize &&
./configure &&
make &&
make install &&
echo "extension=redis.so" >> /usr/local/etc/php/php.ini-development &&
echo "extension=redis.so" >> /usr/local/etc/php/php.ini-production &&
apt-get purge --autoremove -y autoconf wget build-essential &&
cd .. &&
rm redis-5.3.7.tgz &&
rm -rf redis-5.3.7
while executing this command codebuild fails and shows some error
ERROR: failed to solve: process "/bin/sh -c apt-get install -y autoconf wget build-essential --ignore-engines && wget https://pecl.php.net/get/redis-5.3.7.tgz && tar xzf redis-5.3.7.tgz && cd redis-5.3.7 && phpize && ./configure && make && make install && echo "extension=redis.so" >> /usr/local/etc/php/php.ini-development && echo "extension=redis.so" >> /usr/local/etc/php/php.ini-production && apt-get purge --autoremove -y autoconf wget build-essential && cd .. && rm redis-5.3.7.tgz && rm -rf redis-5.3.7" did not complete successfully: exit code: 100
pls help me to resolve this issue if someone knows
The text was updated successfully, but these errors were encountered: