From d7abe00606402ac57e9fbf8eac8491db3467bee5 Mon Sep 17 00:00:00 2001 From: Simon Liang Date: Sun, 1 Jan 2023 15:54:34 +0800 Subject: [PATCH] debian frontend noninteractive --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f17f3f8..089840f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ FROM nvidia/cuda:11.3.0-cudnn8-devel-ubuntu20.04 -RUN apt-get update && apt-get install -y build-essential software-properties-common git wget curl && \ +RUN apt-get update && \ + DEBIAN_FRONTEND=noninteractive \ + apt-get install -y build-essential software-properties-common git wget curl && \ add-apt-repository -y ppa:deadsnakes/ppa RUN apt-get update && apt-get install -y python3.9 python3-distutils