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