From 802d7e6abd62416c592d0f8c4448b7f50b316a52 Mon Sep 17 00:00:00 2001 From: filippobrizzi Date: Tue, 12 Mar 2024 15:44:20 +0000 Subject: [PATCH] fix dockerfile --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 29f3cbb1..f0335b3a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -36,7 +36,7 @@ RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-$CLANG_VE RUN ln -s /usr/bin/clangd-${CLANG_VERSION} /usr/bin/clangd RUN echo "deb [trusted=yes] https://download.eclipse.org/zenoh/debian-repo/ /" | tee -a /etc/apt/sources.list.d/zenoh.list > /dev/null && \ - apt-get update && apt-get install zenoh && \ + apt-get update && apt-get install -y zenoh && \ rm -rf /var/lib/apt/lists/* RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rust_installer.sh && chmod +x rust_installer.sh && ./rust_installer.sh -y