dockerfile
This commit is contained in:
parent
212441ddb5
commit
3bf5015e26
13
Dockerfile
Normal file
13
Dockerfile
Normal 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 ./
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user