2022-04-02 12:21:44 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
2022-04-02 12:56:22 +02:00
|
|
|
WORKDIR /ium
|
2022-04-02 12:21:44 +02:00
|
|
|
|
2022-04-02 15:36:46 +02:00
|
|
|
RUN apt update && apt install -y python3-pip unzip
|
2022-04-02 12:21:44 +02:00
|
|
|
|
2022-04-02 15:36:46 +02:00
|
|
|
RUN pip3 install --user kaggle
|
|
|
|
RUN echo "export PATH=\"\$HOME/.local/bin:\$PATH\"" >> ~/.bashrc
|
2022-04-02 12:21:44 +02:00
|
|
|
|
2022-04-02 15:36:46 +02:00
|
|
|
RUN pip3 install --user pandas
|
|
|
|
RUN pip3 install --user numpy
|
|
|
|
RUN pip3 install --user sklearn
|
2022-04-02 12:21:44 +02:00
|
|
|
|
2022-04-02 15:36:46 +02:00
|
|
|
COPY ./download_dataset.sh ./
|
|
|
|
COPY ./process_data.py ./
|
2022-04-02 12:21:44 +02:00
|
|
|
|
2022-04-02 15:36:46 +02:00
|
|
|
RUN chmod u+x ./download_dataset.sh ./process_data.py
|