From b98e9fc1c3269e604953ee1ff7662f45b442f50c Mon Sep 17 00:00:00 2001 From: Norbert Walkowiak Date: Sun, 16 Apr 2023 15:49:14 +0200 Subject: [PATCH] add dockerfile --- dockerfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 dockerfile diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..1a8e085 --- /dev/null +++ b/dockerfile @@ -0,0 +1,21 @@ +# korzystanie z najnowszej wersji ubuntu +FROM ubuntu:latest + +# Instalujemy pakiety +RUN apt update \ + && apt install -y python3 python3-pip curl \ + && pip install --user kaggle \ + && pip install --user pandas \ + && pip install --user scikit-learn \ + && pip install --user matplotlib + +ENV PATH="/root/.local/bin:$PATH" + +# Dodajemy katalog /app w kontenerze +RUN mkdir /app + +# Ustawiamy katalog roboczy +WORKDIR /app + +# Kopiujemy zawartość +COPY . /app/ \ No newline at end of file