From c1b330dd146c091e43cabfcd3e32101a8bf98c71 Mon Sep 17 00:00:00 2001 From: fithwum <34775371+fithwum@users.noreply.github.com> Date: Sun, 21 Jun 2020 20:27:56 -0700 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 26d06ed..6db9cf8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,9 +8,11 @@ ENV GUID=100 # Install dependencies and folder creation RUN apk update && apk add --no-cache ca-certificates libstdc++ su-exec bash-completion tar nodejs npm \ - && mkdir -p /foundry \ + && mkdir -p /foundry /ftemp \ && chmod 777 -R /foundry \ && chown 99:100 -R /foundry +ADD "${INSTALL_SCRIPT}" /ftemp +RUN chmod +x /ftemp/Install_Script.sh # directory where data is stored WORKDIR /foundry @@ -23,4 +25,4 @@ RUN mkdir -p /foundry/fvtt /foundry/data \ EXPOSE 30000 # Run command -CMD [ "/ts3temp/Install_Script.sh" , "node", "fvtt/resources/app/main.js", "--headless", "--dataPath=/foundry/data" ] +CMD [ "/ftemp/Install_Script.sh" , "node", "fvtt/resources/app/main.js", "--headless", "--dataPath=/foundry/data" ]