From fa3da8a3799afe4a29df1eb33c9ff9fd73286051 Mon Sep 17 00:00:00 2001 From: David O'Sullivan <31728678+pivotal-david-osullivan@users.noreply.github.com> Date: Wed, 31 Jul 2024 16:57:08 +0100 Subject: [PATCH] Update Dockerfile --- ci/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ci/Dockerfile b/ci/Dockerfile index 2fa8d6c31..a6e86ee06 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -1,8 +1,10 @@ ARG base_image=ubuntu:bionic FROM ${base_image} -RUN wget -q -O - https://download.bell-sw.com/pki/GPG-KEY-bellsoft | sudo apt-key add - -RUN echo "deb [arch=amd64] https://apt.bell-sw.com/ stable main" | sudo tee /etc/apt/sources.list.d/bellsoft.list +RUN apt-get update && apt-get install -y wget + +RUN wget -q -O - https://download.bell-sw.com/pki/GPG-KEY-bellsoft | apt-key add - +RUN echo "deb [arch=amd64] https://apt.bell-sw.com/ stable main" | tee /etc/apt/sources.list.d/bellsoft.list RUN apt-get update && apt-get install -y \ build-essential \