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 20ab1f9 commit b695d75Copy full SHA for b695d75
Dockerfile
@@ -28,12 +28,10 @@ ARG BASE_IMAGE=ubuntu:jammy-20240125
28
#
29
# Build wheel
30
31
-FROM python:slim AS src
32
-RUN pip install build
33
-RUN apt-get update && \
34
- apt-get install -y --no-install-recommends git
+FROM ghcr.io/astral-sh/uv:python3.13-alpine AS src
+RUN apk add --no-cache git
35
COPY . /src
36
-RUN python -m build /src
+RUN uvx --from=build pyproject-build --installer=uv /src
37
38
39
# Download stages
0 commit comments