ethereum-models/Dockerfile

9 lines
184 B
Docker
Raw Permalink Normal View History

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