我正在尝试为开发环境构建一个ubuntu-server容器,但我被提示选择键盘布局和字符集.
运行容器:
docker run --rm it ubuntu
在容器中:
apt-get update && apt-get install -y ubuntu-server
容器工作 – 但它是交互式的:(我想用Dockerfile非交互式地重复这个过程.
Dockerfile(失败):
Dockerfile:
FROM ubuntu:16.04 RUN apt-get update && apt-get install -y ubuntu-server
建立它:
docker build -t ubuntu-server .
– 失败
如何在容器中以非交互方式构建/安装ubuntu-server?
在RUN命令之前添加到Dockerfile,这为apt-get设置了非交互模式:
原文链接:https://www.f2er.com/ubuntu/347835.htmlENV DEBIAN_FRONTEND noninteractive