From 3bf5015e268f39b31b4f136d8c18f10d3b466716 Mon Sep 17 00:00:00 2001 From: Alicja Szulecka <73056579+AliSzu@users.noreply.github.com> Date: Fri, 29 Mar 2024 13:46:57 +0100 Subject: [PATCH] dockerfile --- Dockerfile | 13 +++++++++++++ get_dataset.sh | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..30b0a07 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM ubuntu:latest + +RUN apt update && apt install -y python3-pip +RUN apt install unzip +RUN pip install --user kaggle +RUN pip install --user pandas +RUN pip install --user scikit-learn +RUN pip install --user matplotlib +RUN pip install --user geopandas + +WORKDIR /app + +COPY ./get_dataset.sh ./ \ No newline at end of file diff --git a/get_dataset.sh b/get_dataset.sh index c7badcd..206755e 100644 --- a/get_dataset.sh +++ b/get_dataset.sh @@ -1,7 +1,7 @@ #!/bin/bash -#pip install kaggle --upgrade -#kaggle datasets download -d nasa/meteorite-landings +pip install kaggle --upgrade +kaggle datasets download -d nasa/meteorite-landings unzip -o meteorite-landings.zip