1
0
Fork 0

dockerfile

This commit is contained in:
Alicja Szulecka 2024-03-29 13:46:57 +01:00
parent 212441ddb5
commit 3bf5015e26
2 changed files with 15 additions and 2 deletions

13
Dockerfile Normal file
View File

@ -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 ./

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
#pip install kaggle --upgrade pip install kaggle --upgrade
#kaggle datasets download -d nasa/meteorite-landings kaggle datasets download -d nasa/meteorite-landings
unzip -o meteorite-landings.zip unzip -o meteorite-landings.zip