We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be202fe commit 9db8753Copy full SHA for 9db8753
Dockerfile
@@ -4,12 +4,10 @@ ARG BASE_IMAGE=ubuntu:jammy-20240125
4
#
5
# Build wheel
6
7
-FROM python:slim AS src
8
-RUN pip install build
9
-RUN apt-get update && \
10
- apt-get install -y --no-install-recommends git
+FROM ghcr.io/astral-sh/uv:python3.13-alpine AS src
+RUN apk add git
11
COPY . /src
12
-RUN python -m build /src
+RUN uv build --wheel /src
13
14
15
# Download stages
0 commit comments