Skip to content

Commit c40bb48

Browse files
committed
Merge branch 'dockerfile-overhaul' of github.com:formula-code/datasmith into dockerfile-overhaul
# Conflicts: # src/datasmith/agents/build.py # src/datasmith/docker/profile.sh # src/datasmith/docker/run_tests.sh # src/datasmith/docker/validation.py
2 parents 890a311 + fc9177b commit c40bb48

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/datasmith/docker/docker_build_env.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,8 @@ for version in $PY_VERSIONS; do
462462
PYTHON_BIN="/opt/conda/envs/$ENV_NAME/bin/python"
463463
echo "Installing dependencies in $ENV_NAME from $DEPENDENCIES_PATH"
464464
if [ -s "$DEPENDENCIES_PATH" ]; then
465-
uv pip install --python "$PYTHON_BIN" "${UV_OPTS[@]}" -r "$DEPENDENCIES_PATH"
465+
uv pip install --python "$PYTHON_BIN" wheel &&\
466+
uv pip install --no-build-isolation --python "$PYTHON_BIN" "${UV_OPTS[@]}" -r "$DEPENDENCIES_PATH"
466467
# if [ -n "$install_command" ]; then
467468
# echo "Running install commands from $CONF_NAME in $ENV_NAME:"
468469
# echo "$install_command"

0 commit comments

Comments
 (0)