From 66273561d81418bc34e6e3cf9e9cbcf4d455bb22 Mon Sep 17 00:00:00 2001 From: Jens Luedicke Date: Tue, 1 Jul 2025 14:35:10 +0200 Subject: [PATCH] Set permissions on /data --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 59e295b..b6963ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,6 +27,7 @@ COPY . . RUN mkdir -p /app/instance && chmod 777 /app/instance VOLUME /data +RUN mkdir /data && chmod 777 /data # Expose the port the app runs on EXPOSE 5000