Added the scratch dir config

This commit is contained in:
Leon Mika 2026-03-05 22:27:14 +11:00
parent 55b388d497
commit 1b24386001

View file

@ -25,6 +25,7 @@ FROM alpine:latest
RUN apk --no-cache add ca-certificates
RUN mkdir -p /data
RUN mkdir -p /scratch
WORKDIR /root/
@ -34,6 +35,7 @@ COPY --from=builder /app/static ./static
COPY --from=builder /app/views ./views
ENV DATA_DIR=/data
ENV SCRATCH_DIR=/scratch
EXPOSE 3000