47 lines
1.2 KiB
Docker
47 lines
1.2 KiB
Docker
# renovate: datasource=pypi depName=ansible-core versioning=pep440
|
|
ARG ANSIBLE_VERSION=2.13.13
|
|
|
|
# renovate: datasource=pypi depName=ansible-lint versioning=pep440
|
|
ARG ANSIBLE_LINT_VERSION=6.22.0
|
|
|
|
# renovate: datasource=pypi depName=yamllint versioning=pep440
|
|
ARG YAMLLINT_VERSION=1.33.0
|
|
|
|
# alpine version
|
|
FROM alpine:3.19
|
|
|
|
# install software
|
|
RUN apk update
|
|
RUN apk add --no-cache \
|
|
build-base \
|
|
ca-certificates \
|
|
git \
|
|
libffi-dev \
|
|
openssh \
|
|
python3 \
|
|
python3-dev \
|
|
py3-pip
|
|
|
|
# cleanup
|
|
RUN rm -rf /var/cache/apk/*
|
|
|
|
# arguments
|
|
ARG ANSIBLE_VERSION
|
|
ARG ANSIBLE_LINT_VERSION
|
|
ARG YAMLLINT_VERSION
|
|
|
|
# install ansible + linters
|
|
RUN pip3 install --use-pep517 --ignore-installed --break-system-packages \
|
|
ansible-core==${ANSIBLE_VERSION} \
|
|
ansible-lint==${ANSIBLE_LINT_VERSION} \
|
|
yamllint==${YAMLLINT_VERSION}
|
|
|
|
# download collections
|
|
RUN wget -O /tmp/ansible-posix.tar.gz https://galaxy.ansible.com/api/v3/plugin/ansible/content/published/collections/artifacts/ansible-posix-1.5.4.tar.gz
|
|
|
|
# install ansible collections
|
|
RUN ansible-galaxy collection install /tmp/ansible-posix.tar.gz
|
|
RUN ansible-galaxy collection install community.docker
|
|
RUN ansible-galaxy collection install community.general
|
|
RUN ansible-galaxy collection install community.mysql
|