ium_464914/Dockerfile

22 lines
407 B
Docker

FROM ubuntu:latest
# Dockerfile
ARG KAGGLE_USERNAME
ARG KAGGLE_KEY
RUN apt update && apt install -y python3-pip
RUN apt install unzip
RUN apt install bc
RUN pip3 install kaggle
RUN pip install --user pandas
RUN pip install --user scikit-learn
RUN pip install --user matplotlib
RUN pip install --user geopandas
RUN echo ${KAGGLE_KEY}
WORKDIR /app
COPY ./get_dataset.sh ./
RUN chmod +x ./get_dataset.sh