From 65ba0aabd172e2e908aaa089fa38b2068e7410eb Mon Sep 17 00:00:00 2001 From: Yashitha Nadeeshan <64678612+y-developer@users.noreply.github.com> Date: Wed, 3 Dec 2025 01:57:12 +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 41cfbbe..fe240a1 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 sudo apt-get update && sudo apt-get install -y \ +RUN apt-get update && sudo apt-get install -y \ build-essential \ wget \ curl \