From b41e82807d2f7d13776dd6121908106bcf8af3f9 Mon Sep 17 00:00:00 2001 From: Maciej Czajka Date: Sat, 2 Apr 2022 12:43:11 +0200 Subject: [PATCH] update dockerfile --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index f815711..40c66a8 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ -FROM ubuntu:20.04 +FROM ubuntu:latest RUN apt-get update RUN apt-get install -y python3-pip RUN python3 -m pip install kaggle RUN python3 -m pip install --upgrade pip RUN python3 -m pip install --upgrade Pillow -RUN pip3 install --user pandas -RUN pip3 install --user matplotlib -RUN pip3 install --user sklearn +RUN pip3 install pandas +RUN pip3 install matplotlib +RUN pip3 install sklearn RUN apt-get install unzip RUN mkdir root/.kaggle RUN touch root/.kaggle/kaggle.json