We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
When i am going to run your terraform code, the DBT image is going to be failed by giving the below error! Could you please help to resolve it.
"dbt No module named 'jinja2._compat'"
The above error comes when building image using dockerfile at last step of running "dbt deps"
Thanks.
The text was updated successfully, but these errors were encountered:
issue has been resolved by adding the jinjia2 dependency line in dockerfile.
RUN pip install Jinja2
Sorry, something went wrong.
This does not make any difference in my case. I put your line under requirements.txt but still.
FROM python:3.7.4-slim-stretch
MAINTAINER nicor88
COPY requirements.txt . RUN pip install -r requirements.txt RUN pip install Jinja2
COPY config/profiles.dist.yml /root/.dbt/profiles.yml
WORKDIR /dbt
COPY dbt_project.yml /dbt/dbt_project.yml COPY macros /dbt/macros COPY models /dbt/models
RUN dbt deps
No branches or pull requests
Hi,
When i am going to run your terraform code, the DBT image is going to be failed by giving the below error! Could you please help to resolve it.
"dbt No module named 'jinja2._compat'"
The above error comes when building image using dockerfile at last step of running "dbt deps"
Thanks.
The text was updated successfully, but these errors were encountered: