ethereum-models/Dockerfile
2022-07-13 14:41:28 -04:00

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"]