crypto_prediction/Dockerfile

13 lines
277 B
Docker
Raw Normal View History

2022-09-05 13:30:09 +02:00
FROM continuumio/miniconda:latest
WORKDIR /crypto_prediction
COPY . .
RUN conda env create -f env.yml
RUN echo 'source activate crypto_prediction' | tee -a ~/.bashrc
ENV PATH /opt/conda/envs/crypto_prediction/bin:$PATH
ENTRYPOINT ["python", "/crypto_prediction/main.py"]