diff --git a/Dockerfile b/Dockerfile index a351162..e302164 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ FROM ubuntu:latest -RUN apt-get update -RUN apt-get install -y python3-pip + +RUN apt update && apt install -y +RUN apt-get install -y python3 RUN apt-get install -y unzip -RUN pip3 install --user kaggle -RUN pip3 install --user pandas -RUN pip3 install -U scikit-learn \ No newline at end of file +RUN apt-get install -y python3-pip +RUN python3 -m pip install --user kaggle +RUN python3 -m pip install --user pandas +RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle \ No newline at end of file