From de8bdce4265dd2058b0727979d84d3f336ef1428 Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Mon, 1 Aug 2022 16:53:08 +0300 Subject: [PATCH] bumped ubuntu to 22.04 (LTS) (#354) * bumped ubuntu to 22.04 (LTS) Signed-off-by: kim-codefresh --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b3beb4c8..afa95069 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG BASE_IMAGE=docker.io/library/ubuntu:21.10 +ARG BASE_IMAGE=docker.io/library/ubuntu:22.04 ### Base FROM $BASE_IMAGE as base @@ -12,8 +12,7 @@ RUN groupadd -g 999 autopilot && \ mkdir -p /home/autopilot && \ chown autopilot:0 /home/autopilot && \ chmod g=u /home/autopilot && \ - apt-get update && \ - apt-get dist-upgrade -y && \ + apt-get update -y && \ apt-get install -y git git-lfs tini gpg tzdata && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*