Skip to content

Commit 85aaab0

Browse files
committed
test
1 parent 81f31f1 commit 85aaab0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@ USER appuser
2424
COPY requirements.txt /app/requirements.txt
2525
RUN pip install --user -r /app/requirements.txt
2626

27+
# Copy dbt project
28+
COPY dbt_project.yml /app/dbt_project.yml
29+
30+
# Copy macros, models and seeds
31+
COPY /macros /app/macros
32+
COPY /models /app/models
33+
COPY /seeds /app/seeds
34+
2735
# Set environment variable to specify the DBT project path
2836
ENV DBT_PROJECT_PATH /app/src
2937

0 commit comments

Comments
 (0)