2021-04-12 00:31:59 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt update
|
|
|
|
RUN apt install -y python3 python3-pip
|
|
|
|
RUN apt install -y curl
|
|
|
|
|
2021-05-16 16:34:56 +02:00
|
|
|
RUN pip3 install --upgrade pip
|
|
|
|
|
2021-05-16 16:18:20 +02:00
|
|
|
RUN pip3 install pandas
|
|
|
|
RUN pip3 install matplotlib
|
|
|
|
RUN pip3 install numpy
|
|
|
|
RUN pip3 install tensorflow
|
|
|
|
RUN pip3 install sklearn
|
2021-05-17 00:26:29 +02:00
|
|
|
RUN pip3 install sacred
|
|
|
|
RUN pip3 install pymongo
|
2021-06-12 23:12:41 +02:00
|
|
|
RUN pip3 install dvc
|
2021-04-12 00:31:59 +02:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY ./preparations.sh ./
|
2021-05-16 21:06:46 +02:00
|
|
|
COPY ./preprocesing.py ./
|
2021-05-08 23:47:37 +02:00
|
|
|
COPY ./training.py ./
|
2021-05-16 21:19:00 +02:00
|
|
|
COPY ./evaluation.py ./
|
2021-05-17 00:28:39 +02:00
|
|
|
COPY ./sacred_training.py ./
|
2021-04-12 00:31:59 +02:00
|
|
|
|
|
|
|
# CMD ./preparations.sh
|