c1a25e2c25
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
31 lines
680 B
Docker
31 lines
680 B
Docker
FROM ubuntu:latest
|
|
|
|
FROM tensorflow/tensorflow:latest
|
|
|
|
FROM continuumio/miniconda3:latest
|
|
|
|
RUN apt update && apt install -y
|
|
# RUN apt-get install -y python3
|
|
RUN apt-get install -y unzip
|
|
# RUN apt-get install -y python3-pip
|
|
RUN apt-get install unzip
|
|
RUN apt-get install wget
|
|
|
|
# RUN python3 -m pip install kaggle
|
|
# RUN python3 -m pip install pandas
|
|
# RUN pip3 install matplotlib
|
|
# RUN pip3 install sacred
|
|
# RUN pip3 install sacred
|
|
# RUN pip3 install pymongo
|
|
# RUN pip3 install mlflow
|
|
# RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN ls -la
|
|
|
|
RUN conda env create -n myenv_from_file -f environment.yml
|
|
RUN conda init bash
|
|
RUN conda activate myenv_from_file |