File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,13 @@ RUN dpkg --add-architecture i386 \
1212 wget \
1313 && rm -rf /var/lib/apt/lists/*
1414
15- RUN mkdir /cmake
15+
16+ RUN mkdir -p /cmake /usr
1617
1718RUN wget -O- "https://github.com/Kitware/CMake/releases/download/v3.27.8/cmake-3.27.8-linux-$(uname -m).tar.gz" \
1819 | tar -xz --strip-components=1 -C /cmake
1920
20- RUN cp /cmake/bin/* /bin /
21+ RUN cp -r /cmake/. /usr /
2122
2223RUN groupadd -g 911 build \
2324 && useradd -mN -u 911 -g 911 build
Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ RUN apt-get update \
1010 wget \
1111 && rm -rf /var/lib/apt/lists/*
1212
13- RUN mkdir /cmake
13+ RUN mkdir -p /cmake /usr
1414
1515RUN wget -O- "https://github.com/Kitware/CMake/releases/download/v3.27.8/cmake-3.27.8-linux-$(uname -m).tar.gz" \
1616 | tar -xz --strip-components=1 -C /cmake
1717
18- RUN cp /cmake/bin/* /bin /
18+ RUN cp -r /cmake/. /usr /
1919
2020RUN groupadd -g 911 build \
2121 && useradd -mN -u 911 -g 911 build
You can’t perform that action at this time.
0 commit comments