From a3d6842bb9c78a0b791903378e15b76424e8a5d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Koziej?= Date: Wed, 5 Apr 2023 18:59:30 +0200 Subject: [PATCH] fix Dockerfile --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5e2e2bd..a87f385 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM ubuntu:latest -RUN apt-get update -RUN apt install python3-pip -y -RUN pip install --user pandas -RUN pip install --user kaggle -RUN apt-get install unzip +FROM ubuntu:latest +RUN apt-get update --fix-missing +RUN apt install python3-pip -y +RUN pip install --user pandas +RUN pip install --user kaggle +RUN apt-get install unzip RUN apt install git -y \ No newline at end of file