We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd4a10e commit 46b3722Copy full SHA for 46b3722
demos/airflow-scheduled-job/dbt/Dockerfile
@@ -11,7 +11,7 @@ RUN python -m venv /opt/venv
11
ENV PATH="/opt/venv/bin:$PATH"
12
13
# Install Python packages
14
-COPY requirements.txt .
+COPY demos/airflow-scheduled-job/dbt/requirements.txt .
15
RUN pip install --no-cache-dir --upgrade pip && \
16
pip install --no-cache-dir -r requirements.txt
17
@@ -30,7 +30,7 @@ ENV PATH="/opt/venv/bin:$PATH"
30
31
WORKDIR /dbt
32
33
-COPY dbt_test ./dbt_test
+COPY demos/airflow-scheduled-job/dbt/dbt_test ./dbt_test
34
35
# Security: non-root user
36
RUN useradd -m -u 1000 dbt && chown -R dbt:dbt /dbt
0 commit comments