Add Dockerfile.ubuntu18

This commit is contained in:
2025-07-22 19:58:02 +00:00
parent 26ea784743
commit 68ecba6ec0

4
Dockerfile.ubuntu18 Normal file
View File

@@ -0,0 +1,4 @@
FROM ubuntu:18.04
RUN apt update -y && apt install -y build-essential g++ gcc make
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