python migration

This commit is contained in:
2026-05-26 14:36:34 -04:00
parent a67815c61a
commit 1ba2aa39d8
694 changed files with 1396 additions and 86487 deletions
+21
View File
@@ -0,0 +1,21 @@
FROM python:3.11-slim
# Set working dir
WORKDIR /app
# Copy requirements first (for caching)
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app code
COPY . .
# Expose Flask port
EXPOSE 3001
# Environment vars
ENV PYTHONUNBUFFERED=1
# Run app
CMD ["python", "app.py"]