ium_464914/Dockerfile

22 lines
407 B
Docker
Raw Normal View History

2024-03-29 13:46:57 +01:00
FROM ubuntu:latest
2024-04-02 13:47:56 +02:00
# Dockerfile
2024-04-02 14:51:06 +02:00
ARG KAGGLE_USERNAME
ARG KAGGLE_KEY
2024-04-02 13:39:15 +02:00
2024-03-29 13:46:57 +01:00
RUN apt update && apt install -y python3-pip
RUN apt install unzip
2024-04-02 12:56:26 +02:00
RUN apt install bc
2024-04-02 13:24:56 +02:00
RUN pip3 install kaggle
2024-03-29 13:46:57 +01:00
RUN pip install --user pandas
RUN pip install --user scikit-learn
RUN pip install --user matplotlib
RUN pip install --user geopandas
2024-04-02 14:48:28 +02:00
RUN echo ${KAGGLE_KEY}
2024-03-29 13:46:57 +01:00
WORKDIR /app
2024-04-02 14:37:34 +02:00
COPY ./get_dataset.sh ./
RUN chmod +x ./get_dataset.sh