File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
tensorflow/training/docker/2.19/py3 Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff 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 \
Original file line number Diff line number Diff 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 \
You can’t perform that action at this time.
0 commit comments