From 004fe6e9d499e09f7ee2227d72715c535fef6eec Mon Sep 17 00:00:00 2001
From: Louis <contact@louiscap.co>
Date: Sun, 22 Dec 2024 18:58:32 +0000
Subject: [PATCH] Elevate privelage for apt commands

---
 Dockerfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index b80a420..0fb96c2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,9 +4,9 @@ ARG PLATFORM="linux.x86_64"
 ARG GODOT_VERSION="4.3-stable"
 ARG BUTLER_VERSION="15.12.0"
 
-RUN apt-get update \
-    && apt-get install -y git libfontconfig1 \
-    && rm -rf /var/lib/apt/lists/*
+RUN sudo apt-get update \
+    && sudo apt-get install -y git libfontconfig1 \
+    && sudo rm -rf /var/lib/apt/lists/*
 
 COPY commands/godot_build.sh /usr/bin/godot_build
 COPY commands/godot_build_web.sh /usr/bin/godot_build_web
-- 
GitLab