Sending build context to Docker daemon 108.1MB Step 1/5 : FROM django_project_tos_services_local:latest ---> 71fc97bcebc6 Step 2/5 : RUN apt-get update && apt-get install -y apt-utils && apt-get install -y apt-get ---> Running in 8e1803471035 /bin/sh: apt-get: not found The command '/bin/sh -c apt-get update && apt-get install -y apt-utils && apt-get install -y apt-get' returned a non-zero code: 127
时间: 2024-01-07 19:07:49 浏览: 268
PyPI 官网下载 | mail_sending_program-0.0.4-py3-none-any.whl
根据错误提示,似乎是因为在你的Docker镜像中没有安装apt-get命令,导致该命令无法执行。
你可以在Dockerfile中添加一条安装apt-get的指令,例如:
```
RUN apt-get update && \
apt-get install -y apt-utils && \
apt-get install -y apt-get
```
这会在Docker镜像中安装apt-get命令,使得后续的命令可以正常执行。请注意,这条指令应该在执行apt-get update之前运行。
另外,你也可以尝试使用其他的基础镜像,例如`ubuntu`,它已经包含了apt-get命令,你可以在Dockerfile中使用它代替原来的基础镜像。例如:
```
FROM ubuntu:latest
RUN apt-get update && \
apt-get install -y apt-utils && \
apt-get install -y apt-get
```
希望这可以帮助你解决问题。
阅读全文