From 375faf7a9c8964b9fc0a03d8bba4d06c6c5e5458 Mon Sep 17 00:00:00 2001 From: Hugo Gomes Date: Thu, 19 Oct 2023 08:51:37 +0100 Subject: [PATCH] style: format --- ubuntu_dev/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ubuntu_dev/Dockerfile b/ubuntu_dev/Dockerfile index 481c30f..557b906 100644 --- a/ubuntu_dev/Dockerfile +++ b/ubuntu_dev/Dockerfile @@ -17,8 +17,8 @@ RUN apt-get update && apt-get install -y -q --no-install-recommends sudo gcc mak RUN curl --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain $RUST_VERSION -y -RUN apt-get update && apt-get install -y -q --no-install-recommends build-essential clang cmake libglib2.0-dev\ - lld protobuf-compiler &&\ +RUN apt-get update && apt-get install -y -q --no-install-recommends build-essential clang\ + cmake libglib2.0-dev lld protobuf-compiler &&\ /usr/local/cargo/bin/cargo install --locked --version $DENO_VERSION deno &&\ apt-get remove -y build-essential clang cmake libglib2.0-dev lld protobuf-compiler && apt-get autoremove -y &&\ apt-get clean && rm -rf /var/lib/apt/lists/*