From b09db85a900d9270ae20913d57374c876729e22f Mon Sep 17 00:00:00 2001 From: fithwum Date: Fri, 4 Jul 2025 15:11:57 -0700 Subject: [PATCH] update --- alpine/Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 53b702d..3a2ad5f 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -1,12 +1,13 @@ FROM alpine:latest LABEL maintainer "fithwum" -ARG INSTALL_SCRIPT=https://raw.githubusercontent.com/fithwum/foundryvtt/refs/heads/master/alpine/files/Install_Script.sh +ARG INSTALL_SCRIPT=https://gitea.fithwum.tech/fithwum/foundryvtt/raw/branch/master/alpine/files/Install_Script.sh ENV PUID=99 ENV GUID=100 ENV GAME_PORT=30000 +# USER foundry RUN adduser -D -u 99 -G users -h /foundry -s /bin/bash foundry # Install dependencies and folder creation @@ -15,12 +16,10 @@ RUN apk update && apk add --no-cache ca-certificates libstdc++ su-exec bash-comp && chmod 777 -R /foundry \ && chown 99:100 -R /foundry -ADD "${INSTALL_SCRIPT}" /ftemp -RUN chmod +x /ftemp/Install_Script.sh \ +RUN wget --no-cache "${INSTALL_SCRIPT}" -O /ftemp/Install_Script.sh \ + && chmod +x /ftemp/Install_Script.sh \ && chown 99:100 -R /ftemp/Install_Script.sh -# USER foundry - # directory where data is stored VOLUME /foundry