From 3dc138f648ffa7baf6f152abf40c27bdf7406a7f Mon Sep 17 00:00:00 2001 From: Maciej Czajka Date: Fri, 1 Apr 2022 13:22:58 +0200 Subject: [PATCH] update dockerfile --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 03f9f28..f236337 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ FROM ubuntu:latest RUN apt-get update -RUN apt-get install -y python-pip +RUN apt-get install -y python-pip3 RUN python3 -m pip install kaggle -RUN pip install --user pandas -RUN pip install --user matplotlib -RUN pip install --user sklearn +RUN pip3 install --user pandas +RUN pip3 install --user matplotlib +RUN pip3 install --user sklearn RUN apt-get install unzip RUN mkdir root/.kaggle RUN touch root/.kaggle/kaggle.json