Update Dockerfile

This commit is contained in:
fithwum
2020-06-21 19:56:53 -07:00
parent 3b95db9277
commit b0a896a506

View File

@@ -6,13 +6,17 @@ ENV GUID=100
# Install dependencies and folder creation # Install dependencies and folder creation
RUN apk update && apk add --no-cache ca-certificates libstdc++ su-exec bash-completion tar nodejs npm \ RUN apk update && apk add --no-cache ca-certificates libstdc++ su-exec bash-completion tar nodejs npm \
&& mkdir -p /foundry /foundry/fvtt /foundry/data \ && mkdir -p /foundry \
&& chmod 777 -R /foundry \ && chmod 777 -R /foundry \
&& chown 99:100 -R /foundry && chown 99:100 -R /foundry
# directory where data is stored # directory where data is stored
WORKDIR /foundry WORKDIR /foundry
RUN mkdir -p /foundry/fvtt /foundry/data \
&& chmod 777 -R /foundry \
&& chown 99:100 -R /foundry
# TCP Port # TCP Port
EXPOSE 30000 EXPOSE 30000