Create /data folder in Dockerfile.

This commit is contained in:
2025-07-01 13:02:45 +02:00
committed by Jens Luedicke
parent 3cf2f381c1
commit ae0ca14b6f

View File

@@ -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