From 12f4e828e43b4d9d8caf1c55aaf037448f34a570 Mon Sep 17 00:00:00 2001 From: Luca Ferroni Date: Wed, 18 Dec 2024 10:14:01 +0100 Subject: [PATCH] Fix issue #1224, install the python module 'packaging' in Dockerfile to build the Docker image --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index e325b33f..5d02025d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ COPY ./requirements.txt ./requirements-dev.txt / # Create Python Dependency and Sub-Dependency Wheels +RUN pip install packaging RUN pip wheel --wheel-dir /usr/src/app/wheels \ -r requirements.txt \ -r requirements-dev.txt