From a5245b1a05aa408bb8adb50185b9297dad61903e Mon Sep 17 00:00:00 2001 From: Aravind Nair <22199259+aravindvnair99@users.noreply.github.com> Date: Fri, 9 Apr 2021 02:38:19 +0530 Subject: [PATCH] npm i -g npm Signed-off-by: Aravind Nair <22199259+aravindvnair99@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 806d1a4..f62c316 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ ENV PATH "$PATH:/home/root/.npm-global/bin" RUN python -m pip install --upgrade pip wheel setuptools RUN pip install -r requirements.txt RUN npm -g config set user root -RUN npm i -g npm@latest +RUN npm i -g npm RUN npm i -g vega vega-lite vega-cli canvas ENTRYPOINT ["python", "/main.py"]