2021-04-11 15:51:51 +02:00
|
|
|
# Nasz obraz będzie dzidziczył z obrazu Ubuntu w wersji latest
|
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
# Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes)
|
|
|
|
RUN apt update && apt install -y figlet
|
|
|
|
RUN apt install -y git
|
|
|
|
RUN apt install -y python3-pip
|
2021-05-16 21:37:25 +02:00
|
|
|
RUN pip3 install setuptools
|
|
|
|
RUN pip3 install kaggle
|
|
|
|
RUN pip3 install pandas
|
|
|
|
RUN pip3 install numpy
|
|
|
|
RUN pip3 install seaborn
|
|
|
|
RUN pip3 install sklearn
|
|
|
|
RUN pip3 install matplotlib
|
|
|
|
RUN pip3 install tensorflow
|
|
|
|
RUN pip3 install sacred
|
|
|
|
RUN pip3 install wget
|
|
|
|
RUN pip3 install keras
|
|
|
|
RUN pip3 install GitPython
|
|
|
|
RUN pip3 install pymongo
|
2021-05-23 18:20:21 +02:00
|
|
|
RUN pip3 install mlflow
|
2021-05-15 17:01:54 +02:00
|
|
|
|
2021-05-16 20:58:24 +02:00
|
|
|
WORKDIR /app
|
2021-04-11 15:51:51 +02:00
|
|
|
|
2021-05-16 20:58:24 +02:00
|
|
|
COPY ./train.py ./
|