From 4b157cb1a1e70a178d6fe2c720266a771ca3029c Mon Sep 17 00:00:00 2001 From: fithwum Date: Sat, 28 Jan 2023 06:20:55 -0800 Subject: [PATCH] updates --- debian/Dockerfile | 2 +- debian/files/Install_Script.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/Dockerfile b/debian/Dockerfile index db649b6..73601f4 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -10,7 +10,7 @@ ENV GAME_PORT=30000 RUN addgroup foundry && adduser -q --disabled-password --ingroup foundry foundry # Install dependencies and folder creation -RUN apt update && apt install ca-certificates libstdc++ su-exec bash-completion tar nodejs npm \ +RUN apt update && apt install ca-certificates libstdc++6 bash-completion tar nodejs npm \ && mkdir -p /foundry /ftemp \ && chmod 777 -R /foundry \ && chown 99:100 -R /foundry diff --git a/debian/files/Install_Script.sh b/debian/files/Install_Script.sh index a503476..78c4974 100644 --- a/debian/files/Install_Script.sh +++ b/debian/files/Install_Script.sh @@ -20,6 +20,6 @@ chmod +x /foundry/ echo "INFO ! Starting FoundryVTT Server" echo " " # exec node /foundry/fvtt/resources/app/main.js --dataPath=/foundry/data -su foundry -c 'node /foundry/fvtt/resources/app/main.js --dataPath=/foundry/data --ignore-gpu-blacklist' +foundry -c 'node /foundry/fvtt/resources/app/main.js --dataPath=/foundry/data --ignore-gpu-blacklist' exit