From a5f6b47f569bda211b356befd1a985a98bd2494a Mon Sep 17 00:00:00 2001 From: Joe Kane Date: Fri, 4 Aug 2023 12:17:55 +0200 Subject: [PATCH] updates Dockerfile; fixes ubuntu version: 20.04 also: adds DEBIAN_FRONTEND=noninteractive env var which means apt wont ask the user any questions. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 52c3c36..056935f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,9 @@ -FROM ubuntu +FROM ubuntu:20.04 # File Author (Mauricio Moldes) / Maintainer MAINTAINER Manuel Rueda +ENV DEBIAN_FRONTEND=noninteractive # Build env RUN apt-get update && \ apt-get -y install apt-utils wget bzip2 git cpanminus perl-doc gcc make libbz2-dev zlib1g-dev libncurses5-dev libncursesw5-dev liblzma-dev libcurl4-openssl-dev pkg-config libssl-dev aria2 unzip jq vim sudo default-jre python3-pip && \