From 6843296f77105821bc280578ccdd20c4c4557ca4 Mon Sep 17 00:00:00 2001 From: Andrzej Preibisz Date: Sun, 3 Apr 2022 19:25:27 +0200 Subject: [PATCH] Dockerfile fix --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 82ea393..71773da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ RUN apt-get update -y RUN apt-get install -y python3 python3-pip RUN python3 -m pip install --user kaggle -RUN pip install --user pandas -RUN pip install --user scikit-learn +RUN python3 -m pip install --user pandas +RUN python3 -m pip install --user scikit-learn WORKDIR app