Skip to content

Commit

Permalink
fix cmake bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
Congyuwang committed Aug 24, 2023
1 parent 4bfc319 commit 1212289
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dockerfile/dev-containers/debian-10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ RUN mkdir temp && cd temp
RUN curl -OL https://github.com/Kitware/CMake/releases/download/v3.27.4/cmake-3.27.4.tar.gz
RUN tar -xzvf cmake-3.27.4.tar.gz
RUN cd cmake-3.27.4/
RUN ./bootstrap -- -DCMAKE_BUILD_TYPE:STRING=Release
RUN make -j4
RUN make install
RUN ./bootstrap -- -DCMAKE_BUILD_TYPE:STRING=Release

WORKDIR /root
RUN rm -rf temp
Expand Down
2 changes: 1 addition & 1 deletion dockerfile/dev-containers/debian-11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ RUN mkdir temp && cd temp
RUN curl -OL https://github.com/Kitware/CMake/releases/download/v3.27.4/cmake-3.27.4.tar.gz
RUN tar -xzvf cmake-3.27.4.tar.gz
RUN cd cmake-3.27.4/
RUN ./bootstrap -- -DCMAKE_BUILD_TYPE:STRING=Release
RUN make -j4
RUN make install
RUN ./bootstrap -- -DCMAKE_BUILD_TYPE:STRING=Release

WORKDIR /root
RUN rm -rf temp
Expand Down
2 changes: 1 addition & 1 deletion dockerfile/dev-containers/focal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ RUN mkdir temp && cd temp
RUN curl -OL https://github.com/Kitware/CMake/releases/download/v3.27.4/cmake-3.27.4.tar.gz
RUN tar -xzvf cmake-3.27.4.tar.gz
RUN cd cmake-3.27.4/
RUN ./bootstrap -- -DCMAKE_BUILD_TYPE:STRING=Release
RUN make -j4
RUN make install
RUN ./bootstrap -- -DCMAKE_BUILD_TYPE:STRING=Release

WORKDIR /root
RUN rm -rf temp
Expand Down
2 changes: 1 addition & 1 deletion dockerfile/dev-containers/jammy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ RUN mkdir temp && cd temp
RUN curl -OL https://github.com/Kitware/CMake/releases/download/v3.27.4/cmake-3.27.4.tar.gz
RUN tar -xzvf cmake-3.27.4.tar.gz
RUN cd cmake-3.27.4/
RUN ./bootstrap -- -DCMAKE_BUILD_TYPE:STRING=Release
RUN make -j4
RUN make install
RUN ./bootstrap -- -DCMAKE_BUILD_TYPE:STRING=Release

WORKDIR /root
RUN rm -rf temp
Expand Down

0 comments on commit 1212289

Please sign in to comment.