ium_434784/Dockerfile
Maciej Sobkowiak 47da5459a7
All checks were successful
s434784-evaluation/pipeline/head This commit looks good
s434784-training/pipeline/head This commit looks good
dvc dependency
2021-06-12 23:12:41 +02:00

27 lines
497 B
Docker

FROM ubuntu:latest
RUN apt update
RUN apt install -y python3 python3-pip
RUN apt install -y curl
RUN pip3 install --upgrade pip
RUN pip3 install pandas
RUN pip3 install matplotlib
RUN pip3 install numpy
RUN pip3 install tensorflow
RUN pip3 install sklearn
RUN pip3 install sacred
RUN pip3 install pymongo
RUN pip3 install dvc
WORKDIR /app
COPY ./preparations.sh ./
COPY ./preprocesing.py ./
COPY ./training.py ./
COPY ./evaluation.py ./
COPY ./sacred_training.py ./
# CMD ./preparations.sh