From 421026891821897696fcd1ed691722a475fa11cb Mon Sep 17 00:00:00 2001 From: s434695 Date: Sun, 11 Apr 2021 15:51:51 +0200 Subject: [PATCH] dockerfile --- Dockerfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..81fa718 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +# 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 seaborn +RUN pip3 install --user sklearn +RUN pip3 install --user matplotlib + +WORKDIR /app + +COPY ./skrypt.sh ./ +COPY ./zadanie2.py ./ + +CMD ./zadanie2.py \ No newline at end of file