Fix issue #1224, install the python module 'packaging' in Dockerfile to build the Docker image

This commit is contained in:
Luca Ferroni 2024-12-18 10:14:01 +01:00
parent 7247682307
commit 12f4e828e4

View File

@ -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