feat: dark mode and python 3.14

This commit is contained in:
2025-12-10 11:36:40 +01:00
parent d68dc8411f
commit 449adc60e0
3 changed files with 196 additions and 30 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
# Use Python 3.13 slim image as base
FROM python:3.13-slim AS builder
FROM python:3.14-slim AS builder
# Set working directory
WORKDIR /app
@@ -17,7 +17,7 @@ RUN --mount=type=cache,id=pip,target=/root/.cache/pip \
--target=/app/site-packages \
-r requirements.txt
FROM python:3.13-slim
FROM python:3.14-slim
COPY --from=builder /app/site-packages /app/site-packages