docker 使用 Ubuntu 18.04 构建图像在提示输入键盘原产国后挂起

docker build with Ubuntu 18.04 image hangs after prompting for Country of origin for keyboard

当我使用 docker 构建 Ubuntu 18.04 映像时,它会提示

Country of origin for keyboard:

在我输入数字后它挂起。这是我的 Docker 文件:

FROM ubuntu:18.04

RUN apt update
RUN apt install software-properties-common -y
RUN add-apt-repository ppa:graphics-drivers 
RUN apt install nvidia-driver-440 -y

我需要做什么才能使用 Docker 构建 ubuntu 18.04 映像?

如果设置此环境变量,则可以跳过该交互式输入:DEBIAN_FRONTEND=noninteractive

Dockerfile 应如下所示:

FROM ubuntu:18.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update
RUN apt install software-properties-common -y
RUN add-apt-repository ppa:graphics-drivers
RUN apt install nvidia-driver-440 -y