ubuntu@ubuntu:~/serversign/djangoProject_tosServices_to_client$ sudo docker exec -it django_project_tos_services_local /bin/bash bash-5.0# apt update bash: apt: command not found bash-5.0# apt-get update && apt-get install -y apt bash: apt-get: command not found
时间: 2024-02-10 14:10:43 浏览: 89
docker容器中 bash: vi: command not found,docker apt-get 异常 Temporary failure resolving
根据你提供的信息,错误信息显示在 Docker 容器中找不到 `apt` 和 `apt-get` 命令。这说明你的容器中没有安装 `apt` 和 `apt-get` 工具。你可以尝试通过以下命令安装这些工具:
```
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils && \
apt-get install -y apt
```
这个命令将会在 Dockerfile 中安装 `apt-utils` 和 `apt` 工具。如果你已经构建了镜像,可以进入容器中手动安装这些工具。在容器中执行以下命令:
```
apt-get update && apt-get install -y --no-install-recommends apt-utils && \
apt-get install -y apt
```
安装完成后,就可以在容器中使用 `apt` 和 `apt-get` 命令了。
阅读全文