28 lines
731 B
Docker
28 lines
731 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 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
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY ./../train.py ./
|
||
|
COPY ./../evaluate.py ./
|
||
|
COPY ./../sacred1.py ./
|
||
|
COPY ./../sacred2.py ./
|
||
|
COPY ./../skrypt.sh ./
|
||
|
COPY ./../zadanie2.py ./
|
||
|
COPY ./../zadanie5.py ./
|
||
|
|