From 85cd54fdfe47a563bfb6fb3fa4ecf7e9290647d4 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sun, 19 Dec 2021 18:37:52 -0500 Subject: [PATCH] Update Dockerfile-ubuntu_18_04 -Move wget --- scripts/Dockerfile-ubuntu_18_04 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Dockerfile-ubuntu_18_04 b/scripts/Dockerfile-ubuntu_18_04 index 52a896a9..a66dd134 100644 --- a/scripts/Dockerfile-ubuntu_18_04 +++ b/scripts/Dockerfile-ubuntu_18_04 @@ -10,7 +10,8 @@ RUN apt-get update -y && \ ca-certificates \ gnupg \ software-properties-common \ - && wget -qO - https://apt.kitware.com/keys/kitware-archive-latest.asc | sudo apt-key add - && \ + wget \ + && wget -qO - https://apt.kitware.com/keys/kitware-archive-latest.asc | apt-key add - && \ add-apt-repository 'deb https://apt.kitware.com/ubuntu/ bionic main' && \ add-apt-repository ppa:ubuntu-toolchain-r/test && \ apt-get update -y && \ @@ -38,7 +39,6 @@ RUN apt-get update -y && \ libxfixes-dev \ libxrandr-dev \ libxtst-dev \ - wget \ && apt-get clean \ && rm -rf /var/lib/apt/lists/*