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-15 17:01:54 +02:00
|
|
|
RUN pip3 install --user setuptools
|
2021-04-11 15:51:51 +02:00
|
|
|
RUN pip3 install --user kaggle
|
|
|
|
RUN pip3 install --user pandas
|
2021-04-25 23:24:46 +02:00
|
|
|
RUN pip3 install --user numpy
|
2021-04-11 15:51:51 +02:00
|
|
|
RUN pip3 install --user seaborn
|
|
|
|
RUN pip3 install --user sklearn
|
|
|
|
RUN pip3 install --user matplotlib
|
2021-04-25 23:24:46 +02:00
|
|
|
RUN pip3 install --user tensorflow
|
2021-05-15 17:01:54 +02:00
|
|
|
RUN pip3 install --user sacred
|
2021-05-15 16:49:19 +02:00
|
|
|
RUN pip3 install --user wget
|
2021-05-15 17:01:54 +02:00
|
|
|
RUN pip3 install --user keras
|
|
|
|
RUN pip3 install --user GitPython
|
|
|
|
RUN pip3 install --user pymongo
|
|
|
|
|
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 ./
|