2022-03-15 14:23:01 +01:00
|
|
|
# alpine version
|
2022-05-31 15:47:33 +02:00
|
|
|
FROM alpine:3.16
|
2022-03-15 14:23:01 +01:00
|
|
|
|
2022-04-13 17:17:13 +02:00
|
|
|
|
2022-03-15 14:23:01 +01:00
|
|
|
# software versions
|
2022-10-28 15:44:46 +02:00
|
|
|
ENV ANSIBLE_VERSION=2.12.10
|
2023-02-03 09:37:22 +01:00
|
|
|
ENV ANSIBLE_LINT_VERSION=6.12.1
|
2023-02-02 06:01:30 +01:00
|
|
|
ENV YAML_LINT_VERSION=1.29.0
|
2022-03-15 14:23:01 +01:00
|
|
|
|
2022-04-13 17:17:13 +02:00
|
|
|
|
2022-03-15 14:23:01 +01:00
|
|
|
# install software
|
|
|
|
RUN apk update
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
build-base \
|
|
|
|
ca-certificates \
|
|
|
|
git \
|
|
|
|
libffi-dev \
|
|
|
|
openssh \
|
|
|
|
python3 \
|
|
|
|
python3-dev \
|
|
|
|
py3-pip
|
|
|
|
|
2022-04-13 17:17:13 +02:00
|
|
|
|
2022-04-13 13:38:00 +02:00
|
|
|
# cleanup
|
2022-03-15 14:23:01 +01:00
|
|
|
RUN rm -rf /var/cache/apk/*
|
|
|
|
|
2022-04-13 17:17:13 +02:00
|
|
|
|
2022-03-15 14:23:01 +01:00
|
|
|
# install ansible + linters
|
|
|
|
RUN pip3 install --upgrade pip
|
2023-02-02 08:38:10 +01:00
|
|
|
RUN pip3 install --use-pep517 --ignore-installed \
|
|
|
|
ansible-core==${ANSIBLE_VERSION} \
|
|
|
|
ansible-lint==${ANSIBLE_LINT_VERSION} \
|
|
|
|
yamllint==${YAML_LINT_VERSION}
|
2022-05-27 11:58:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
# install ansible collections
|
|
|
|
RUN ansible-galaxy collection install ansible.posix
|
|
|
|
RUN ansible-galaxy collection install community.docker
|
|
|
|
RUN ansible-galaxy collection install community.general
|
|
|
|
RUN ansible-galaxy collection install community.mysql
|