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 services/hackbot-api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-slim AS builder
FROM python:3.14-slim AS builder

COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/

Expand All @@ -22,7 +22,7 @@ COPY services/hackbot-api ./services/hackbot-api
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --locked --no-dev --package hackbot-api

FROM python:3.12-slim AS base
FROM python:3.14-slim AS base

COPY --from=builder /app /app
WORKDIR /app/services/hackbot-api
Expand Down