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