alison_tinker
02/14/2023, 9:19 PMmeltano invoke dbt-snowflake:run
through Docker, using the Dockerfile provided in that guide (with 'meltano' as the entrypoint command). It looks like dbt is unable to connect to Snowflake from the container (runs fine outside it). It doesn't provide any detailed errors explaining why. Anyone else run into this or know off the top of your head why this would happen? These are the actual commands that were run:
docker build --tag meltano-tap-slack:dev .
docker run --env-file ./.env meltano-tap-slack:dev invoke dbt-snowflake:run
pat_nadolny
02/14/2023, 9:27 PMmeltano --environment=dev config dbt-snowflake
inside your container, it might expose the issue. UPDATED: to include environment namealison_tinker
02/15/2023, 2:46 PM.env
, resulting in double quotes when added to the config. Working now.