diff --git a/docker/fidle_python_pip.dockerfile b/docker/fidle_python_pip.dockerfile
index efa2d1cc0f042d1442ab39836f64958dfb557517..a88ebe429dfed0958a5e37467b2a7b296ebb67f3 100644
--- a/docker/fidle_python_pip.dockerfile
+++ b/docker/fidle_python_pip.dockerfile
@@ -1,6 +1,6 @@
 #
 #
-ARG PYTHON_VERSION=3.8
+ARG PYTHON_VERSION=3.7
 ARG docker_image_base=python:${PYTHON_VERSION}-slim
 FROM ${docker_image_base}
 
@@ -11,8 +11,8 @@ ENV TZ=Europe/Paris LANG=C.UTF-8 LC_ALL=C.UTF-8 DEBIAN_FRONTEND=noninteractive
 
 RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
     apt update --fix-missing && \
-    apt install -y --no-install-recommends apt-utils \
-    apt install wget curl git \
+    apt install -y --no-install-recommends apt-utils &&\
+    apt install -y wget curl git \
         python3-venv python3-pip && \
     apt -y dist-upgrade && \
     curl -fsSL https://deb.nodesource.com/setup_lts.x |  bash - && \