From 2261b15fc66d119fd60aea33a9aaeaa16a8bbdfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Pogodzi=C5=84ski?= Date: Sun, 11 Apr 2021 22:09:34 +0200 Subject: [PATCH] created Dockerfile --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..77c70fb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:20.04 + +RUN apt update && apt install -y python3 python3-pip + +RUN pip3 install kaggle +RUN pip3 install pandas + + +