From a626f8189b362d94b0c095922a637dee11765eca Mon Sep 17 00:00:00 2001 From: Mateusz Kuc Date: Thu, 20 Apr 2023 18:58:01 +0200 Subject: [PATCH] added Dockerfile - for Python libraries --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..bd1d292 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python:latest + +RUN apt-get update && apt-get install -y + +RUN pip install pandas +RUN pip install scikit-learn \ No newline at end of file