Skip to content

Commit a2e9060

Browse files
authored
fix: upgrade Dockerfile base image and remove setuptools (#651) (#659)
1 parent 4409bfd commit a2e9060

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,13 @@ COPY --from=wheel-builder /dist /dist
130130
RUN uv pip install /dist/aiperf-*.whl \
131131
&& rm -rf /dist /workspace/pyproject.toml
132132

133+
# Remove setuptools as it is not needed for the runtime image
134+
RUN uv pip uninstall setuptools
135+
133136
############################################
134137
############# Runtime Image ################
135138
############################################
136-
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
137140

138141
# Include license and attribution files
139142
COPY LICENSE ATTRIBUTIONS*.md /legal/

0 commit comments

Comments
 (0)