From 2ff558cdde172468f5d8a77d46eb8a6b650c8717 Mon Sep 17 00:00:00 2001 From: yubiuser Date: Tue, 20 Aug 2024 13:03:27 +0200 Subject: [PATCH] Add clang and set --no-install-recommends Signed-off-by: yubiuser --- .devcontainer/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 71bc1462..81fdf3e9 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -3,10 +3,11 @@ ARG ubuntu_version=24.04 FROM ubuntu:${ubuntu_version} RUN apt-get update && \ - apt-get install -y \ + apt-get install --no-install-recommends -y \ build-essential \ ca-certificates \ cmake \ + clang \ git \ nano\ openssh-server \ No newline at end of file