Legacy Preview Update

This commit is contained in:
2026-04-20 16:16:54 -04:00
parent 8312b5bea6
commit 8be7e1e5f9
10 changed files with 358 additions and 81 deletions
+2 -1
View File
@@ -9,7 +9,7 @@ COPY website/ .
RUN mkdir -p ../backend && bun run build
# Backend and final image
FROM python:3.9-slim
FROM python:3.10-slim
RUN apt-get update && \
apt-get install -y ffmpeg libgl1 libglib2.0-0 && \
@@ -22,6 +22,7 @@ COPY backend/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY backend/ .
COPY scripts/ /scripts/
# Copy static build from builder
COPY --from=builder /project/backend/static /app/static