17 lines
365 B
Docker
17 lines
365 B
Docker
FROM ubuntu:latest
|
|
|
|
WORKDIR /ium
|
|
|
|
RUN apt update && apt install -y python3-pip unzip
|
|
|
|
RUN pip3 install kaggle
|
|
RUN echo "export PATH=\"\$HOME/.local/bin:\$PATH\"" >> ~/.bashrc
|
|
|
|
RUN pip3 install pandas
|
|
RUN pip3 install numpy
|
|
RUN pip3 install sklearn
|
|
|
|
COPY ./download_dataset.sh ./
|
|
COPY ./process_dataset.py ./
|
|
|
|
RUN chmod u+x ./download_dataset.sh ./process_dataset.py |