fix: install python-passlib

This commit is contained in:
2026-02-02 15:24:15 +01:00
parent 843d8b7691
commit abb62021a4
3 changed files with 3 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ RUN pacman --sync --sysupgrade --refresh --noconfirm && \
python-boto3 \ python-boto3 \
python-botocore \ python-botocore \
python-setuptools \ python-setuptools \
python-passlib \
python-pip \ python-pip \
python-pytest \ python-pytest \
python-yaml \ python-yaml \

View File

@@ -17,7 +17,7 @@ RUN dnf update --assumeyes && \
RUN alternatives --set python3 /usr/bin/python3.12 && \ RUN alternatives --set python3 /usr/bin/python3.12 && \
curl --fail --silent --location https://bootstrap.pypa.io/get-pip.py --output get-pip.py && \ curl --fail --silent --location https://bootstrap.pypa.io/get-pip.py --output get-pip.py && \
python3 get-pip.py && \ python3 get-pip.py && \
pip install ansible-lint boto3 pip install ansible-lint boto3 passlib
# Create default ansible inventory file # Create default ansible inventory file
RUN mkdir --parents /etc/ansible RUN mkdir --parents /etc/ansible

View File

@@ -15,7 +15,7 @@ RUN dnf update --assumeyes && \
RUN ln --symbolic --force /usr/bin/python3.12 /usr/bin/python3 && \ RUN ln --symbolic --force /usr/bin/python3.12 /usr/bin/python3 && \
curl --fail --silent --location https://bootstrap.pypa.io/get-pip.py --output get-pip.py && \ curl --fail --silent --location https://bootstrap.pypa.io/get-pip.py --output get-pip.py && \
python3 get-pip.py && \ python3 get-pip.py && \
pip install ansible-lint boto3 pip install ansible-lint boto3 passlib
# Create default ansible inventory file # Create default ansible inventory file
RUN mkdir --parents /etc/ansible RUN mkdir --parents /etc/ansible