From dfe9a39d7a93fe34b2d5f544b890f64ce8447962 Mon Sep 17 00:00:00 2001 From: Matt Penny Date: Wed, 28 Aug 2024 19:48:50 -0400 Subject: [PATCH] Use latest Ubuntu LTS (24.04) for docker build and fix git permission issues --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2e023ca..3b6f470 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -from ubuntu:23.04 +from ubuntu:24.04 WORKDIR /usr/src/app @@ -62,3 +62,6 @@ ENV BLENDER_3_6 /opt/blender/blender-3.6.1-linux-x64/blender RUN pipx ensurepath --force RUN pipx install vpk + +# Avoid "dubious ownership" error when running git commands +RUN git config --global --add safe.directory "$PWD" \ No newline at end of file