Skip to content

Commit a0a4e8f

Browse files
committed
Update some deps in Dockerfile.
1 parent 76ec892 commit a0a4e8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ RUN apt-get update && \
1010
RUN apt-add-repository contrib
1111
RUN apt-add-repository non-free
1212
RUN apt-get update && apt-get install -y nvidia-cuda-dev
13-
RUN curl -Lo cmake.tar.gz https://github.com/Kitware/CMake/releases/download/v3.30.3/cmake-3.30.3.tar.gz && tar xf cmake.tar.gz
14-
RUN cd cmake-3.* && cmake . && make -j$(nproc) && make install
13+
RUN curl -Lo cmake.tar.gz https://github.com/Kitware/CMake/releases/download/v4.1.1/cmake-4.1.1.tar.gz && tar xf cmake.tar.gz
14+
RUN cd cmake-4.* && cmake . && make -j$(nproc) && make install
1515
RUN rm -rf cmake*
1616
RUN curl -LO "https://www.nasm.us/pub/nasm/releasebuilds/2.16.03/nasm-2.16.03.tar.xz" && \
1717
tar xf "nasm-2.16.03.tar.xz" && cd "nasm-2.16.03" && \
1818
./configure --prefix=/usr && make -j$(nproc) && make install && cd .. && rm -rf "nasm-2.16.03*"
19-
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - && \
19+
RUN curl -sL https://deb.nodesource.com/setup_22.x | bash - && \
2020
apt-get install -y nodejs && \
2121
npm install -g typescript
2222
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | \

0 commit comments

Comments
 (0)