ansible-deployment-container/Dockerfile.linux.amd64
Simon Cornet a031db5d33
All checks were successful
continuous-integration/drone/push Build is passing
[GLOBAL] Updated Alpine to 3.18, ansible-core to 2.13.11 and yamllint to 1.32.0
2023-07-26 12:34:22 +02:00

36 lines
822 B
Docker

# alpine version
FROM alpine:3.18
# software versions
ENV ANSIBLE_VERSION=2.13.11
ENV ANSIBLE_LINT_VERSION=6.17.2
ENV YAML_LINT_VERSION=1.32.0
# 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/*
# install ansible + linters
RUN pip3 install --upgrade pip
RUN pip3 install --use-pep517 --ignore-installed \
ansible-core==${ANSIBLE_VERSION} \
ansible-lint==${ANSIBLE_LINT_VERSION} \
yamllint==${YAML_LINT_VERSION}
# 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