Add Amnezia Web Panel source with PostgreSQL 17 storage.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
orohi
2026-07-26 00:02:18 +03:00
co-authored by Cursor
parent ead1c64dd1
commit 8b70d51c87
50 changed files with 21713 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# syntax=docker/dockerfile:1
FROM python:3.14-slim
WORKDIR /app
# Копируем requirements.txt и устанавливаем зависимости
COPY requirements.txt requirements.txt
RUN pip3 install --no-cache-dir -r requirements.txt
# Копируем остальные файлы проекта
COPY . .
# Команда запуска приложения
CMD ["python3", "app.py"]