From 2c653f3870dd447f0046b87780d636ddfc5f22ee Mon Sep 17 00:00:00 2001 From: Adam Wojdyla Date: Mon, 2 May 2022 02:10:54 +0200 Subject: [PATCH] add matplotlib to docker --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a5799f0..292cf26 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,7 @@ RUN python3 -m pip install pandas RUN python3 -m pip install wheel --no-deps -U RUN python3 -m pip install torch RUN python3 -m pip install sklearn +RUN python3 -m pip install matplotlib RUN python3 -m pip freeze ENV PATH="/root/.local/bin:${PATH}"