1
失敗構築:ドッカーマイドッキングウィンドウのビルドコマンドはメッセージで失敗し
Step 3/23 : RUN apt-get install vim -yqq cron -yqq python-software-properties -yqq supervisor -yqq python-dev -yqq python -yqq python3-dev -yqq python-distribute -yqq python-pip -yqq python-numpy -yqq libjpeg8-dev -yqq libfreetype6-dev -yqq libxft-dev -yqq curl -yqq unzip -yqq
---> Running in 38d814924eaa
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/u/unattended-upgrades/unattended-upgrades_0.90ubuntu0.5_all.deb 404 Not Found [IP: 91.189.88.162 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
The command '/bin/sh -c apt-get install vim -yqq cron -yqq python-software-properties -yqq supervisor -yqq python-dev -yqq python -yqq python3-dev -yqq python-distribute -yqq python-pip -yqq python-numpy -yqq libjpeg8-dev -yqq libfreetype6-dev -yqq libxft-dev -yqq curl -yqq unzip -yqq' returned a non-zero code: 100
マイDockerfileそれは先週完全に罰金働いていたが、今日、私は取得しています
FROM ubuntu:latest
RUN apt-get update
RUN apt-get install \
vim -yqq \
cron -yqq \
software-properties-common -yqq \
python-software-properties -yqq \
supervisor -yqq\
python-dev -yqq \
python -yqq \
python3-dev -yqq \
python-distribute -yqq \
python-pip -yqq \
python-numpy -yqq \
libjpeg8-dev -yqq \
libfreetype6-dev -yqq \
libxft-dev -yqq \
curl -yqq \
unzip -yqq
(関連部分)です上記のエラーメッセージ。ここで何が起きてるの?
なぜ '-yqq'何度も修正するには? – Robert
このdockerfileは他の誰かによって作成されたもので、可能な限り少し修正したいのですが、 '-yqq'は私が作業を開始したときにそこにありました。なぜそれが失敗するのでしょうか? – PYA
apt-sourcesの前にapt.sourcesを操作していますか? – Robert