diff --git a/docker/fidle_python_pip.dockerfile b/docker/fidle_python_pip.dockerfile
index f4ef2430daa20c57af7b90c39e43d9a2dc63cf2e..87666c87351f47f67066a25ec569d2747424f0f7 100644
--- a/docker/fidle_python_pip.dockerfile
+++ b/docker/fidle_python_pip.dockerfile
@@ -10,11 +10,10 @@ LABEL maintainer=soraya.arias@inria.fr
 ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 DEBIAN_FRONTEND=noninteractive
 
 RUN apt update --fix-missing && \
-    apt install -y --no-install-recommends apt-utils && \
-        python3-venv python3-pip && \
+    apt install -y --no-install-recommends apt-utils \
+        python3-venv  \
+        python3-pip && \
     apt -y dist-upgrade && \
-    curl -fsSL https://deb.nodesource.com/setup_lts.x |  bash - && \
-    apt install -y nodejs && \
     apt clean && \
     rm -fr /var/lib/apt/lists/*