Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -1,7 +1,8 @@
|
|
| 1 |
|
| 2 |
FROM ubuntu:latest
|
| 3 |
WORKDIR /app
|
| 4 |
-
RUN apt-get -y update
|
|
|
|
| 5 |
RUN git clone https://github.com/dbt-labs/jaffle_shop.git
|
| 6 |
|
| 7 |
FROM postgres:latest
|
|
@@ -9,7 +10,7 @@ FROM python:latest
|
|
| 9 |
WORKDIR /jaffle_shop
|
| 10 |
COPY requirements.txt .
|
| 11 |
COPY profiles.yml .
|
| 12 |
-
COPY dbt_project.yml .
|
| 13 |
ENV POSTGRES_HOST_AUTH_METHOD=trust
|
| 14 |
ENV DBT_PROFILES_DIR=/jaffle_shop
|
| 15 |
RUN pip install -r requirements.txt
|
|
|
|
| 1 |
|
| 2 |
FROM ubuntu:latest
|
| 3 |
WORKDIR /app
|
| 4 |
+
RUN apt-get -y update
|
| 5 |
+
RUN apt-get -y install git
|
| 6 |
RUN git clone https://github.com/dbt-labs/jaffle_shop.git
|
| 7 |
|
| 8 |
FROM postgres:latest
|
|
|
|
| 10 |
WORKDIR /jaffle_shop
|
| 11 |
COPY requirements.txt .
|
| 12 |
COPY profiles.yml .
|
| 13 |
+
COPY jaffle_shop/dbt_project.yml .
|
| 14 |
ENV POSTGRES_HOST_AUTH_METHOD=trust
|
| 15 |
ENV DBT_PROFILES_DIR=/jaffle_shop
|
| 16 |
RUN pip install -r requirements.txt
|