When I try to build my container I receive the following error:
docker-php-source: not found
the code is :
RUN docker-php-source extract \
&& curl -L -o /tmp/redis.tar.gz https://github.com/phpredis/phpredis/archive/3.0.0.tar.gz \
&& tar xfz /tmp/redis.tar.gz \
&& rm -r /tmp/redis.tar.gz \
&& mv phpredis-3.0.0 /usr/src/php/ext/redis \
&& sed -i '$ a redis' /usr/src/php-available-exts \
&& docker-php-ext-install redis \
&& docker-php-source delete