Skip to content

Commit dbfd4bb

Browse files
committed
creating a DB
1 parent 2942597 commit dbfd4bb

File tree

4 files changed

+161230
-9
lines changed

4 files changed

+161230
-9
lines changed

Dockerfile

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
1-
FROM mcr.microsoft.com/vscode/devcontainers/python:3.9
1+
FROM ghcr.io/dbt-labs/dbt-core:1.9.latest
22

3-
ARG USER_UID=1000
4-
ARG USER_GID=$USER_UID
3+
WORKDIR /app
54

6-
RUN if [ "$USER_GID" != "1000" ] || [ "$USER_UID" != "1000" ]; then groupmod --gid $USER_GID vscode && usermod --uid $USER_UID --gid $USER_GID vscode; fi
7-
8-
RUN pwd
9-
RUN ls
10-
COPY requirements.txt /tmp/
5+
COPY requirements.txt ./
116
RUN pip3 install --upgrade pip
12-
RUN pip3 install --requirement /tmp/requirements.txt
7+
RUN pip3 install --requirement requirements.txt
8+

0 commit comments

Comments
 (0)