add sqlite backup support for cloudron

This commit is contained in:
2026-04-12 12:35:11 +02:00
parent 9c164dc2e7
commit a4e7292930
2 changed files with 5 additions and 2 deletions
+2 -2
View File
@@ -4,8 +4,8 @@
"author": "Florian Heinz",
"description": "Private Flask app for meals, shopping and gentle food planning",
"tagline": "einfach essen planen",
"version": "0.2.2",
"upstreamVersion": "0.2.1",
"version": "0.2.3",
"upstreamVersion": "0.2.2",
"healthCheckPath": "/",
"httpPort": 8000,
"manifestVersion": 2,
+3
View File
@@ -6,6 +6,9 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1
RUN apt-get update && apt-get install -y --no-install-recommends sqlite3 \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt /app/code/
RUN pip install --no-cache-dir -r requirements.txt