-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make components cloud agnostic #281
Conversation
components/caption_images/Dockerfile
Outdated
@@ -12,7 +12,7 @@ RUN pip3 install --no-cache-dir -r requirements.txt | |||
# Install Fondant | |||
# This is split from other requirements to leverage caching | |||
ARG FONDANT_VERSION=main | |||
RUN pip3 install git+https://github.com/ml6team/fondant@${FONDANT_VERSION} | |||
RUN pip3 install git+https://github.com/ml6team/fondant@${FONDANT_VERSION}#egg=fondant[aws, azure, gcp] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @PhilippeMoussalli
In the pip documentation (example 7), they use the following format:
pip install fondant[aws,azure,gcp] @ git+https://github.com/ml6team/fondant@${FONDANT_VERSION}
Which I think is a bit more readable and more future-proof, as eggs have been deprecated as far as I'm aware.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh good to know. I was not aware. I'll change them
e622420
to
6e30a19
Compare
fixes #210 Pyarrow was also removed from many of the components' requirements since it is a Fondant dependency
fixes #210
Pyarrow was also removed from many of the components' requirements since it is a Fondant dependency