Skip to content

Commit ec72521

Browse files
authored
utilizing uv (#3623)
1 parent 4616488 commit ec72521

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docker/zenml-quickstart-dev.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ RUN uv pip install "git+https://github.com/zenml-io/zenml.git@$ZENML_BRANCH" not
1616
RUN echo "Cloud Provider: $CLOUD_PROVIDER";
1717
# Install cloud-specific ZenML integrations
1818
RUN if [ "$CLOUD_PROVIDER" = "aws" ]; then \
19-
zenml integration install aws s3 -y; \
19+
zenml integration install aws s3 --uv -y; \
2020
elif [ "$CLOUD_PROVIDER" = "azure" ]; then \
21-
zenml integration install azure -y; \
21+
zenml integration install azure --uv -y; \
2222
elif [ "$CLOUD_PROVIDER" = "gcp" ]; then \
23-
zenml integration install gcp -y; \
23+
zenml integration install gcp --uv -y; \
2424
else \
2525
echo "No specific cloud integration installed"; \
2626
fi

docker/zenml-quickstart.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ RUN uv pip install zenml${ZENML_VERSION:+==$ZENML_VERSION} notebook pyarrow data
1919
RUN echo "Cloud Provider: $CLOUD_PROVIDER";
2020
# Install cloud-specific ZenML integrations
2121
RUN if [ "$CLOUD_PROVIDER" = "aws" ]; then \
22-
zenml integration install aws s3 -y; \
22+
zenml integration install aws s3 --uv -y; \
2323
elif [ "$CLOUD_PROVIDER" = "azure" ]; then \
24-
zenml integration install azure -y; \
24+
zenml integration install azure --uv -y; \
2525
elif [ "$CLOUD_PROVIDER" = "gcp" ]; then \
26-
zenml integration install gcp -y; \
26+
zenml integration install gcp --uv -y; \
2727
else \
2828
echo "No specific cloud integration installed"; \
2929
fi

0 commit comments

Comments
 (0)