ium_434695/train_evaluate/Dockerfile

31 lines
840 B
Docker
Raw Permalink Normal View History

2021-05-15 11:50:27 +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 12:09:45 +02:00
RUN pip3 install --user setuptools
2021-05-15 11:50:27 +02:00
RUN pip3 install --user kaggle
RUN pip3 install --user pandas
RUN pip3 install --user numpy
RUN pip3 install --user seaborn
RUN pip3 install --user sklearn
RUN pip3 install --user matplotlib
RUN pip3 install --user tensorflow
RUN pip3 install --user sacred
RUN pip3 install --user wget
2021-05-15 12:09:45 +02:00
RUN pip3 install --user keras
2021-05-15 14:00:59 +02:00
RUN pip3 install --user GitPython
RUN pip3 install --user pymongo
2021-05-15 12:09:45 +02:00
2021-05-15 11:50:27 +02:00
WORKDIR /app
2021-05-15 12:02:05 +02:00
COPY ./train.py ./
COPY ./evaluate.py ./
COPY ./sacred1.py ./
COPY ./sacred2.py ./
COPY ./skrypt.sh ./
COPY ./zadanie2.py ./
2021-05-15 13:06:12 +02:00
COPY ./zadanie5.py ./