I'm trying to install the XDebug in a Docker container, but I'm getting the following error:
E: Unable to locate package php-xdebug
This is my Dockerfile:
FROM php:7.0-apache
RUN a2enmod rewrite
RUN docker-php-ext-install pdo pdo_mysql
RUN apt-get install php-xdebug -y
COPY php.ini /usr/local/etc/php/
COPY . /var/www/html/
When I'm running the same command in my computer, the XDebug is getting installed without any error:
apt-get install php-xdebug
Where might the problem be?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…