mirror of
https://github.com/FlipsideCrypto/flow-models.git
synced 2026-02-06 09:37:27 +00:00
9 lines
190 B
Docker
9 lines
190 B
Docker
|
|
FROM ghcr.io/dbt-labs/dbt-snowflake:1.2.latest
|
||
|
|
WORKDIR /support
|
||
|
|
RUN mkdir /root/.dbt
|
||
|
|
COPY profiles.yml /root/.dbt
|
||
|
|
RUN mkdir /root/flow
|
||
|
|
WORKDIR /flow
|
||
|
|
COPY . .
|
||
|
|
EXPOSE 8080
|
||
|
|
ENTRYPOINT [ "bash"]
|