Skip to content

Commit 9d01497

Browse files
committed
fix: fix docker build
1 parent 86b5466 commit 9d01497

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage - Use a Python image with uv pre-installed
2-
FROM ghcr.io/astral-sh/uv:python3.13-alpine AS builder
2+
FROM ghcr.io/astral-sh/uv:python3.13-bookworm AS builder
33

44
# Install the project into `/app`
55
WORKDIR /app
@@ -28,7 +28,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
2828
uv sync --locked --no-dev --no-editable
2929

3030
# Production stage - Use minimal Python image
31-
FROM python:3.13-alpine
31+
FROM python:3.13-bookworm
3232

3333
# Set the working directory
3434
WORKDIR /app

0 commit comments

Comments
 (0)