We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7450ff commit db22af3Copy full SHA for db22af3
Dockerfile.arm
@@ -345,6 +345,19 @@ COPY ./docs ./docs
345
COPY --from=rust-env /usr/local/cargo /usr/local/cargo
346
COPY --from=rust-env /usr/local/rustup /usr/local/rustup
347
348
+# Remove security vuln with rsync on ARM systems:
349
+# https://ubuntu.com/security/CVE-2024-12084
350
+RUN <<EOF
351
+ apt-get -y purge rsync
352
+ wget https://download.samba.org/pub/rsync/src/rsync-3.4.1.tar.gz
353
+ tar -xvzf rsync-3.4.1.tar.gz
354
+ cd rsync-3.4.1
355
+ ./configure --disable-xxhash --disable-zstd --disable-lz4
356
+ make && make install
357
+ cd ..
358
+ rm -rf rsync-3.4.1 rsync-3.4.1.tar.gz
359
+EOF
360
+
361
362
# RUN rm -rf /usr/local/cargo /usr/local/rustup
363
RUN chmod 777 -R /workspace/bionemo2/
0 commit comments