Skip to content

Commit 43bc0d2

Browse files
add setuptools 78'
1 parent 5193bbc commit 43bc0d2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tensorflow/training/docker/2.19/py3/Dockerfile.cpu

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,8 @@ RUN uv pip install --system --no-cache \
284284
shap
285285

286286
# Install SageMaker packages
287-
RUN uv pip install --system --no-cache \
287+
# Use --no-build-isolation to ensure pandas 1.5.3 can access pkg_resources during build
288+
RUN uv pip install --system --no-cache --no-build-isolation \
288289
"sagemaker<3" \
289290
sagemaker-experiments==0.1.45 \
290291
sagemaker-tensorflow-training==20.4.1 \

tensorflow/training/docker/2.19/py3/cu125/Dockerfile.gpu

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,8 @@ RUN uv pip install --system --no-cache \
356356
shap
357357

358358
# Install SageMaker packages
359-
RUN uv pip install --system --no-cache \
359+
# Use --no-build-isolation to ensure pandas 1.5.3 can access pkg_resources during build
360+
RUN uv pip install --system --no-cache --no-build-isolation \
360361
"sagemaker<3" \
361362
sagemaker-experiments==0.1.45 \
362363
sagemaker-tensorflow-training==20.4.1 \

0 commit comments

Comments
 (0)