File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,12 @@ RUN dpkg --add-architecture i386 \
1212 wget \
1313 && rm -rf /var/lib/apt/lists/*
1414
15+ RUN mkdir /cmake
16+
1517RUN wget -O- "https://github.com/Kitware/CMake/releases/download/v3.27.8/cmake-3.27.8-linux-$(uname -m).tar.gz" \
16- | tar -xz --strip-components=1 -C /
18+ | tar -xz --strip-components=1 -C /cmake
19+
20+ RUN cp /cmake/bin/* /bin/
1721
1822RUN groupadd -g 911 build \
1923 && useradd -mN -u 911 -g 911 build
Original file line number Diff line number Diff line change @@ -10,8 +10,12 @@ RUN apt-get update \
1010 wget \
1111 && rm -rf /var/lib/apt/lists/*
1212
13+ RUN mkdir /cmake
14+
1315RUN wget -O- "https://github.com/Kitware/CMake/releases/download/v3.27.8/cmake-3.27.8-linux-$(uname -m).tar.gz" \
14- | tar -xz --strip-components=1 -C /
16+ | tar -xz --strip-components=1 -C /cmake
17+
18+ RUN cp /cmake/bin/* /bin/
1519
1620RUN groupadd -g 911 build \
1721 && useradd -mN -u 911 -g 911 build
You can’t perform that action at this time.
0 commit comments