我正在尝试构建一个以下面的内容作为开始两行的docker镜像。
FROM ubuntu:18.04
RUN apt-get update --fix-missing && apt-get -y install nginx sed python-setuptools python-dev build-essential uwsgi-plugin-python supervisor vim
我正进入(状态E: Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_1.1.1-1ubuntu2.1~18.04.4_amd64.deb 404 Not Found [IP: x.x.x.x 80] E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
但是当我尝试apt-get update
在行之前运行某些操作时,它工作正常。看起来某种延迟(甚至是 echo 命令)使其成功。有人能帮我了解它是否正确吗?
提前致谢。