Andy Carter
06/21/2023, 9:01 AMutilities
have their own python venv like taps and targets? If I needed to add the dagster-postgres
extension library to the dagster utility env, how would I do that in a way that would be replicated when deploying via docker?
https://docs.dagster.io/deployment/dagster-instance#dagster-storageMatt Menzenski
06/21/2023, 1:45 PMpip_url
. I would expect that you could add dagster-postgres
to that field.
We don’t use the dagster utility, but as an example, we have three packages listed in the pip_url
for dbt-postgtres:
plugins:
utilities:
- name: dbt-postgres
variant: dbt-labs
pip_url: dbt-core==1.5.0 dbt-postgres==1.5.0 git+<https://github.com/meltano/dbt-ext.git@626e188eefd03603826d3d0229b10a0838c6b54d>
visch
06/22/2023, 12:51 AM