我的码头工人工作正常。我重置了Docker的磁盘映像,然后当我运行“ docker-compose up -d”命令时。
我开始收到“找不到http://deb.debian.org/debian/dists/jessie-updates/main/binary-amd64/Packages 404错误
E:某些索引文件下载失败。它们已被忽略,或改用旧的。
”错误。
我的DockerFile是
FROM php:7.1.16-apache
#install all the system dependencies and enable PHP modules
RUN apt-get update && apt-get install -y \
libicu-dev \
libpq-dev \
libmcrypt-dev \
git \
zip \
unzip \
python \
python-setuptools \
libmemcached-dev \
&& pecl install memcached \
&& rm -r /var/lib/apt/lists/* \
&& docker-php-ext-configure pdo_mysql --with-pdo-mysql=mysqlnd \
&& docker-php-ext-install \
intl \
mbstring \
mcrypt \
pcntl \
pdo_mysql \
pdo_pgsql \
pgsql \
zip \
opcache \
&& docker-php-ext-enable memcached \
&& pecl install -o -f redis \
&& rm -rf /tmp/pear \
&& docker-php-ext-enable redis
RUN pecl install xdebug
RUN easy_install supervisor
#RUN echo_supervisord_conf > /etc/supervisord.conf
ADD supervisord.conf /etc/supervisord.conf
ADD php.ini $PHP_INI_DIR/php.ini
#RUN echo "zend_extension=/usr/local/lib/php/extensions/no-debug-non-zts-20151012/xdebug.so" to php.ini
VOLUME /var/www/html
WORKDIR /var/www/html
#install composer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer
#set our application folder as an environment variable
ENV APP_HOME /var/www/html
#change uid and gid of apache to docker user uid/gid
RUN usermod -u 1000 www-data && groupmod -g 1000 www-data
#change the web_root to laravel /var/www/html/public folder
RUN sed -i -e "s/html/html\/public/g" /etc/apache2/sites-enabled/000-default.conf
# enable apache module rewrite
RUN a2enmod rewrite
#copy source files and run composer
#COPY . $APP_HOME
# install all PHP dependencies
#RUN composer install --no-interaction
#change ownership of our applications
RUN chown -R www-data:www-data $APP_HOME
ADD startup.sh /root/
RUN chmod 755 /root/startup.sh
CMD ["/root/startup.sh"]
如何解决此问题?
答案 0 :(得分:9)
添加
RUN sed -i '/jessie-updates/d' /etc/apt/sources.list
行前
RUN apt-get update && apt-get install -y \ ......