Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

update ansible version to 9.1.0 #618

Merged
merged 1 commit into from
Dec 22, 2023
Merged
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
8 changes: 4 additions & 4 deletions dockerfiles/ansible/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/python:3.9-slim-buster
FROM docker.io/library/python:3.11-slim-buster

# metadata
ARG VCS_REF=master
Expand All @@ -20,9 +20,9 @@ RUN apt-get update -y && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
sshpass ssh-client rsync tini curl git ruby

RUN pip install pip --upgrade
RUN pip install ansible
RUN ansible-galaxy collection install ansible.posix
RUN pip install --no-cache-dir pip --upgrade
RUN pip install --no-cache-dir ansible==9.1.0 requests jmespath
RUN ansible-galaxy collection install ansible.posix community.general ansible.utils ansible.netcommon

ARG WORKDIR=/work

Expand Down