From 393d137c8fb70f726f0a05c3816139d2a8f0f585 Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Tue, 22 Jul 2025 21:54:15 +0000 Subject: [PATCH] Edit Dockerfile.ubuntu18 --- Dockerfile.ubuntu18 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.ubuntu18 b/Dockerfile.ubuntu18 index aac2e69..f26a16a 100644 --- a/Dockerfile.ubuntu18 +++ b/Dockerfile.ubuntu18 @@ -1,4 +1,4 @@ FROM ubuntu:18.04 -RUN apt update -y && apt install -y build-essential g++ gcc cmake make git wget curl ca-certificates -RUN wget https://github.com/Kitware/CMake/releases/download/v3.20.0/cmake-3.20.0.tar.gz && tar -zvxf cmake-3.20.0.tar.gz && cd cmake-3.20.0 && ./bootstrap && make -j16 && make install \ No newline at end of file +RUN apt update -y && apt install -y build-essential g++ gcc cmake make git wget curl ca-certificates libssl-dev +RUN wget https://github.com/Kitware/CMake/releases/download/v3.20.0/cmake-3.20.0.tar.gz && tar -zvxf cmake-3.20.0.tar.gz && cd cmake-3.20.0 && ./bootstrap --parallel=`nproc` && make -j`nproc` && make install \ No newline at end of file