From a4e7292930bd7cd7fdf5e76c01e18d8c58955e52 Mon Sep 17 00:00:00 2001 From: Florian Heinz Date: Sun, 12 Apr 2026 12:35:11 +0200 Subject: [PATCH] add sqlite backup support for cloudron --- CloudronManifest.json | 4 ++-- Dockerfile.cloudron | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CloudronManifest.json b/CloudronManifest.json index 4b6ad81..acf775a 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -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, diff --git a/Dockerfile.cloudron b/Dockerfile.cloudron index 349e7a1..3ad19d1 100644 --- a/Dockerfile.cloudron +++ b/Dockerfile.cloudron @@ -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