Skip to content

Instantly share code, notes, and snippets.

@perryism
Created February 10, 2025 23:46
Show Gist options
  • Save perryism/12605254e9253d68d4ff625133dbeccb to your computer and use it in GitHub Desktop.
Save perryism/12605254e9253d68d4ff625133dbeccb to your computer and use it in GitHub Desktop.
Extract dependencies from docker and upload to snowflake
FROM python:3.8
WORKDIR /usr/local/lib/python3.8/site-packages
RUN pip install evidently
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