Merge pull request #1225 from feroda/main

Fix issue #1224, install the python module 'packaging' in Dockerfile …
This commit is contained in:
Christopher Broderick 2024-12-18 10:11:10 +00:00 committed by GitHub
commit cc6e597840
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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