update
All checks were successful
Build and Push foundryvtt Docker Image / build (push) Successful in 31s

This commit is contained in:
2025-07-04 15:11:57 -07:00
parent a82f186aba
commit b09db85a90

View File

@@ -1,12 +1,13 @@
FROM alpine:latest FROM alpine:latest
LABEL maintainer "fithwum" 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 PUID=99
ENV GUID=100 ENV GUID=100
ENV GAME_PORT=30000 ENV GAME_PORT=30000
# USER foundry
RUN adduser -D -u 99 -G users -h /foundry -s /bin/bash foundry RUN adduser -D -u 99 -G users -h /foundry -s /bin/bash foundry
# Install dependencies and folder creation # 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 \ && chmod 777 -R /foundry \
&& chown 99:100 -R /foundry && chown 99:100 -R /foundry
ADD "${INSTALL_SCRIPT}" /ftemp RUN wget --no-cache "${INSTALL_SCRIPT}" -O /ftemp/Install_Script.sh \
RUN chmod +x /ftemp/Install_Script.sh \ && chmod +x /ftemp/Install_Script.sh \
&& chown 99:100 -R /ftemp/Install_Script.sh && chown 99:100 -R /ftemp/Install_Script.sh
# USER foundry
# directory where data is stored # directory where data is stored
VOLUME /foundry VOLUME /foundry