Ubuntu 新手。今天我决定从 Ubuntu 16,04 重建我的 dockerfile,并收到此错误
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/z/zlib/zlib1g-dev_1.2.8.dfsg-2ubuntu4.1_amd64.deb 404 Not Found [IP: 91.189.88.149 80]
E: Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/m/mysql-5.7/mysql-client-core-5.7_5.7.28-0ubuntu0.16.04.2_amd64.deb 404 Not Found [IP: 91.189.88.149 80]
E: Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/m/mysql-5.7/mysql-common_5.7.28-0ubuntu0.16.04.2_all.deb 404 Not Found [IP: 91.189.88.149 80]
E: Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/m/mysql-5.7/mysql-client-5.7_5.7.28-0ubuntu0.16.04.2_amd64.deb 404 Not Found [IP: 91.189.88.149 80]
E: Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/m/mysql-5.7/mysql-client_5.7.28-0ubuntu0.16.04.2_all.deb 404 Not Found [IP: 91.189.88.149 80]
昨天的集会没有发生任何问题。
这是我的 Dockerfile
FROM ubuntu:16.04
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get -y dist-upgrade
RUN apt-get -yq mysql-client
我知道决定就像
add-apt-repository -y ppa:ondrej/mysql-5.7
我不明白官方仓库中的文件在哪里。也许这只是一个暂时的问题?