From 2db132700d877a96a5cfe8689e2938da308aab35 Mon Sep 17 00:00:00 2001 From: Zofia Galla Date: Sun, 11 Apr 2021 11:39:22 +0200 Subject: [PATCH] Added Dockerfile --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a07e575 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM ubuntu:20.04 + +COPY . /app + +WORKDIR /app + +RUN pip install kaggle +RUN pip install sklearn +RUN pip install pandas +RUN pip install seaborn +RUN pip install matplotlib + +CMD ["run.sh"]