Skip to content
This repository was archived by the owner on May 27, 2026. It is now read-only.
Closed
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 projects/pgai/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Note: some dependencies are not supported on 3.13, do not bump until that is sorted out
FROM python:3.12-slim AS build
FROM python:3.14-slim AS build
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
UV_PROJECT_ENVIRONMENT=/usr/local/
Expand All @@ -25,7 +25,7 @@ RUN uv lock # update lockfile, switches to cpu-only torch
RUN uv sync --frozen --no-install-project --no-dev --extra vectorizer-worker

# Note: some dependencies are not supported on 3.13, do not bump until that is sorted out
FROM python:3.12-slim
FROM python:3.14-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
WORKDIR /app
Expand Down
Loading