From 024848349ab45d109b92a33b1dbe0df3a6a9c395 Mon Sep 17 00:00:00 2001 From: Yashitha Nadeeshan <64678612+y-developer@users.noreply.github.com> Date: Wed, 3 Dec 2025 01:58:25 +0530 Subject: [PATCH] Fix Dockerfile to remove unnecessary sudo --- dockerfiles/ubuntu/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/ubuntu/Dockerfile b/dockerfiles/ubuntu/Dockerfile index fe240a1..63d9c69 100644 --- a/dockerfiles/ubuntu/Dockerfile +++ b/dockerfiles/ubuntu/Dockerfile @@ -3,7 +3,7 @@ FROM mcr.microsoft.com/devcontainers/base:ubuntu-${UBUNTU_VERSION} USER vscode -RUN apt-get update && sudo apt-get install -y \ +RUN apt-get update && apt-get install -y \ build-essential \ wget \ curl \