File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ RUN uv pip install "git+https://github.com/zenml-io/zenml.git@$ZENML_BRANCH" not
16
16
RUN echo "Cloud Provider: $CLOUD_PROVIDER" ;
17
17
# Install cloud-specific ZenML integrations
18
18
RUN if [ "$CLOUD_PROVIDER" = "aws" ]; then \
19
- zenml integration install aws s3 -y; \
19
+ zenml integration install aws s3 --uv - y; \
20
20
elif [ "$CLOUD_PROVIDER" = "azure" ]; then \
21
- zenml integration install azure -y; \
21
+ zenml integration install azure --uv - y; \
22
22
elif [ "$CLOUD_PROVIDER" = "gcp" ]; then \
23
- zenml integration install gcp -y; \
23
+ zenml integration install gcp --uv - y; \
24
24
else \
25
25
echo "No specific cloud integration installed" ; \
26
26
fi
Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ RUN uv pip install zenml${ZENML_VERSION:+==$ZENML_VERSION} notebook pyarrow data
19
19
RUN echo "Cloud Provider: $CLOUD_PROVIDER" ;
20
20
# Install cloud-specific ZenML integrations
21
21
RUN if [ "$CLOUD_PROVIDER" = "aws" ]; then \
22
- zenml integration install aws s3 -y; \
22
+ zenml integration install aws s3 --uv - y; \
23
23
elif [ "$CLOUD_PROVIDER" = "azure" ]; then \
24
- zenml integration install azure -y; \
24
+ zenml integration install azure --uv - y; \
25
25
elif [ "$CLOUD_PROVIDER" = "gcp" ]; then \
26
- zenml integration install gcp -y; \
26
+ zenml integration install gcp --uv - y; \
27
27
else \
28
28
echo "No specific cloud integration installed" ; \
29
29
fi
You can’t perform that action at this time.
0 commit comments