diff --git a/.env.example b/.env.example index 83eebefa..67a634e5 100644 --- a/.env.example +++ b/.env.example @@ -28,4 +28,4 @@ SCULPIN_URL=http://localhost # Any additional arguments to pass to the "sculpin generate" command. #SCULPIN_GENERATE_ARGS= -SCULPIN_GENERATE_ARGS="--server --watch" +SCULPIN_GENERATE_ARGS="--output-dir=/output/html --server --watch" diff --git a/Dockerfile b/Dockerfile index e220c853..d6a17378 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,8 @@ FROM opdavies/sculpin-serve AS app WORKDIR /app RUN adduser --disabled-password sculpin \ - && chown sculpin:sculpin -R /app + && mkdir /output \ + && chown sculpin:sculpin -R /app /output ###