加了后FROM python:2.7.17RUN apt-get updateRUN apt-get install -y apt-utilsRUN apt-get install -y apt-get还是报错Sending build context to Docker daemon 108.1MB Step 1/9 : FROM python:2.7.17 ---> 01c23fcbab3f Step 2/9 : FROM django_project_tos_services_local:latest ---> 71fc97bcebc6 Step 3/9 : RUN apt-get update ---> Running in 5ef45f1e3f2c /bin/sh: apt-get: not found The command '/bin/sh -c apt-get update' returned a non-zero code: 127
时间: 2024-02-09 12:13:26 浏览: 87
Python库 | satella-2.7.17.linux-x86_64.tar.gz
这个错误提示显示apt-get仍然没有被安装成功。我们可以尝试使用以下命令安装apt-get:
```
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils && \
apt-get install -y apt-get
```
这个命令会先更新软件包列表,然后安装apt-utils,最后安装apt-get。注意,我们使用了--no-install-recommends参数来避免安装apt-utils的依赖项。
阅读全文