ansible-deployment-container/Dockerfile.linux.amd64
Simon Cornet e546357a24
All checks were successful
continuous-integration/drone/push Build is passing
[GLOBAL] Upgraded to Alpine 3.16 and ansible-core version 2.12
2022-05-31 15:47:33 +02:00

40 lines
813 B
Docker

# alpine version
FROM alpine:3.16
# software versions
ENV ANSIBLE_VERSION=2.12
ENV ANSIBLE_LINT_VERSION=6.2.2
ENV YAML_LINT_VERSION=1.26.3
# 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 ansible-core==${ANSIBLE_VERSION}
RUN pip3 install ansible-lint==${ANSIBLE_LINT_VERSION}
RUN pip3 install 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