Skip to content

Commit f5a44aa

Browse files
committed
yet another attempt at fixing the build thing
1 parent 0765196 commit f5a44aa

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

tools/docker-env/linux-gnu-crossbuild-i686.Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
1517
RUN 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

1822
RUN groupadd -g 911 build \
1923
&& useradd -mN -u 911 -g 911 build

tools/docker-env/linux-gnu.Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
1315
RUN 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

1620
RUN groupadd -g 911 build \
1721
&& useradd -mN -u 911 -g 911 build

0 commit comments

Comments
 (0)