terra-models/Dockerfile
2022-09-06 15:15:37 -06:00

9 lines
178 B
Docker

FROM fishtownanalytics/dbt:1.2.0
WORKDIR /support
RUN mkdir /root/.dbt
COPY profiles.yml /root/.dbt
RUN mkdir /root/terra
WORKDIR /terra
COPY . .
EXPOSE 8080
ENTRYPOINT [ "bash"]