This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Use a multi-stage build | |
| # This is the build-stage image | |
| FROM continuumio/miniconda3 as BUILD | |
| WORKDIR /app | |
| # Create the environment | |
| COPY conda.yml . | |
| RUN conda env create -f conda.yml |