We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4409bfd commit a2e9060Copy full SHA for a2e9060
1 file changed
Dockerfile
@@ -130,10 +130,13 @@ COPY --from=wheel-builder /dist /dist
130
RUN uv pip install /dist/aiperf-*.whl \
131
&& rm -rf /dist /workspace/pyproject.toml
132
133
+# Remove setuptools as it is not needed for the runtime image
134
+RUN uv pip uninstall setuptools
135
+
136
############################################
137
############# Runtime Image ################
138
-FROM nvcr.io/nvidia/distroless/python:3.13-v3.1.2-dev AS runtime
139
+FROM nvcr.io/nvidia/distroless/python:3.13-v4.0.1-dev AS runtime
140
141
# Include license and attribution files
142
COPY LICENSE ATTRIBUTIONS*.md /legal/
0 commit comments