ium_434695/Dockerfile
s434695 101850ba06
Some checks failed
s434695-training/pipeline/head There was a failure building this commit
test
2021-05-16 20:58:24 +02:00

27 lines
728 B
Docker

# 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
RUN pip3 install --user setuptools
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
RUN pip3 install --user keras
RUN pip3 install --user GitPython
RUN pip3 install --user pymongo
WORKDIR /app
COPY ./train.py ./
CMD ./train.py