From 0df95fdb1d73a082179405c255aeff77954990c8 Mon Sep 17 00:00:00 2001 From: fithwum <34775371+fithwum@users.noreply.github.com> Date: Mon, 22 Jun 2020 05:39:41 -0700 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 40362a1..494a4d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,9 @@ RUN addgroup -S 100 && adduser -S -u 99 -D foundry -G 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 /ftemp /foundry/fvtt /foundry/data \ + && mkdir -p /foundry /ftemp /ftemp/fvtt /ftemp/data \ + && cp /ftemp/data /foundry/data \ + && cp /ftemp/fvtt /foundry/fvtt \ && chmod 777 -R /foundry \ && chown 99:100 -R /foundry