From 3347d347552f85d56d354864738daeb1447129b5 Mon Sep 17 00:00:00 2001 From: 1e99 Date: Sat, 29 Mar 2025 12:04:24 +0100 Subject: [PATCH] fix permissions --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aacb0b5..f791564 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ FROM mcr.microsoft.com/dotnet/sdk:7.0 WORKDIR /vintagestory ADD ./entry.sh . -RUN chmod +x ./entry.sh +RUN chmod a+rx ./entry.sh +RUN chmod a+rwx . VOLUME ["/data"]