Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardo-gnosis committed Sep 30, 2024
1 parent 81f31f1 commit 85aaab0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ USER appuser
COPY requirements.txt /app/requirements.txt
RUN pip install --user -r /app/requirements.txt

# Copy dbt project
COPY dbt_project.yml /app/dbt_project.yml

# Copy macros, models and seeds
COPY /macros /app/macros
COPY /models /app/models
COPY /seeds /app/seeds

# Set environment variable to specify the DBT project path
ENV DBT_PROJECT_PATH /app/src

Expand Down

0 comments on commit 85aaab0

Please sign in to comment.