Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM python:3.12-slim AS build
FROM python:3.14-slim AS build
ENV PIP_NO_CACHE_DIR=1 PIP_DISABLE_PIP_VERSION_CHECK=1 PIP_DEFAULT_TIMEOUT=120
WORKDIR /build
COPY pyproject.toml requirements.lock LICENSE ./
RUN pip install --upgrade "pip>=26.2" && pip wheel --wheel-dir /wheels --require-hashes -r requirements.lock
COPY app ./app
RUN pip wheel --wheel-dir /wheels --no-deps .

FROM python:3.12-slim AS production
FROM python:3.14-slim AS production
ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 PIP_NO_CACHE_DIR=1 PIP_DEFAULT_TIMEOUT=120
WORKDIR /app
RUN pip install --upgrade "pip>=26.2"
Expand Down
Loading