From ae0ca14b6fb37f87cc7db80761c56328b3dba4d4 Mon Sep 17 00:00:00 2001 From: Jens Luedicke Date: Tue, 1 Jul 2025 13:02:45 +0200 Subject: [PATCH] Create /data folder in Dockerfile. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 69677e0..5707408 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,8 @@ RUN pip install --no-cache-dir -r requirements.txt # Copy the rest of the application COPY . . +RUN mkdir /data + # Create the SQLite database directory with proper permissions RUN mkdir -p /app/instance && chmod 777 /app/instance