mirror of
https://github.com/FlipsideCrypto/ethereum-models.git
synced 2026-02-06 11:27:00 +00:00
9 lines
184 B
Docker
9 lines
184 B
Docker
|
|
FROM fishtownanalytics/dbt:1.0.0
|
||
|
|
WORKDIR /support
|
||
|
|
RUN mkdir /root/.dbt
|
||
|
|
COPY profiles.yml /root/.dbt
|
||
|
|
RUN mkdir /root/ethereum
|
||
|
|
WORKDIR /ethereum
|
||
|
|
COPY . .
|
||
|
|
EXPOSE 8080
|
||
|
|
ENTRYPOINT [ "bash"]
|