2021-04-11 22:09:34 +02:00
|
|
|
FROM ubuntu:20.04
|
|
|
|
|
|
|
|
RUN apt update && apt install -y python3 python3-pip
|
|
|
|
|
|
|
|
RUN pip3 install kaggle
|
|
|
|
RUN pip3 install pandas
|
2021-05-15 18:18:35 +02:00
|
|
|
RUN pip3 install tensorflow
|
|
|
|
RUN pip3 install numpy
|
|
|
|
RUN pip3 install matplotlib
|
2021-05-16 14:57:07 +02:00
|
|
|
RUN pip3 install sklearn
|
2021-05-16 15:06:12 +02:00
|
|
|
RUN pip3 install sacred
|
|
|
|
RUN pip3 install mlflow
|
2021-04-11 22:09:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
|