When I build a Ubuntu 18.04 image with docker it prompts for
Country of origin for keyboard:
and after I enter a number it hangs. Here is my Dockerfile:
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
What do I have to do to build a ubuntu 18.04 image with Docker?