first commit

This commit is contained in:
2025-11-30 00:07:24 +01:00
commit b5e642aecb
78 changed files with 15162 additions and 0 deletions

6
Dockerfile.debug Normal file
View File

@ -0,0 +1,6 @@
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY debug_import.py .
CMD ["python3", "debug_import.py"]