If I want to run my flows within a docker-containe...
# ask-community
c
If I want to run my flows within a docker-container block but I have prefect-snowflake, and prefect-dbt as dependencies. Is there a better option than editing the ENV value to install them with EXTRA_PIP_PACKAGES? When I do that it looks like it keeps re-running the PIP command each time the docker image spins up.
o
Can you install them in your docker image using pip install?
c
You can pre-build your dependencies and host the image in a repository and pull from that, so you don’t have to install it fresh every time