Created
February 10, 2025 23:46
-
-
Save perryism/12605254e9253d68d4ff625133dbeccb to your computer and use it in GitHub Desktop.
Extract dependencies from docker and upload to snowflake
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.8 | |
WORKDIR /usr/local/lib/python3.8/site-packages | |
RUN pip install evidently |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker build . -t test | |
docker run -v $(pwd):/src test tar -czvf /src/snowflake.tar.gz \ | |
evidently \ | |
plotly \ | |
deprecation.py \ | |
uuid6 \ | |
typing_inspect \ | |
mypy_extensions.py \ | |
nltk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment