Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ansible-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ operating_system_distributions:
- "git"
- "gosu"
- "jq"
- "krb5-user"
- "less"
- "libffi-dev"
- "libhdf5-dev"
Expand Down
2 changes: 1 addition & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ RUN serversideup-dep-install-alpine ${PACKAGE_DEPENDENCIES} && \
# Install Ansible and additional dependencies
echo "🤓 Installing ${BUILD_ANSIBLE_VARIATION}==${BUILD_ANSIBLE_PATCH_VERSION}" && \
pip3 install --no-cache-dir "${BUILD_ANSIBLE_VARIATION}==${BUILD_ANSIBLE_PATCH_VERSION}" && \
pip3 install --no-cache-dir ansible-lint passlib requests python-dateutil && \
pip3 install --no-cache-dir ansible-lint passlib requests python-dateutil 'pywinrm[kerberos]>=0.4.0' 'pypsrp[kerberos]<=1.0.0' && \
\
# Verify Ansible installation
ansible --version
Expand Down
2 changes: 1 addition & 1 deletion src/rootfs/usr/local/bin/serversideup-dep-install-debian
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -oe
###################################################
# This script installs debian packages that are passed to it

DEBIAN_FRONTEND=noninteractive
export DEBIAN_FRONTEND=noninteractive
script_name="serversideup-dep-install-debian"

############
Expand Down