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
|
|
|
|
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-04-11 15:51:51 +02:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY ./skrypt.sh ./
|
|
|
|
COPY ./zadanie2.py ./
|
2021-04-25 23:24:46 +02:00
|
|
|
COPY ./zadanie5.py ./
|
2021-04-11 15:51:51 +02:00
|
|
|
|
2021-04-25 23:24:46 +02:00
|
|
|
CMD ./zadanie2.py
|
|
|
|
CMD ./zadanie5.py
|