2022-03-15 14:23:01 +01:00
|
|
|
# alpine version
|
|
|
|
FROM alpine:3.15
|
|
|
|
|
|
|
|
# software versions
|
|
|
|
ENV ANSIBLE_VERSION=2.9.27
|
2022-04-13 13:09:19 +02:00
|
|
|
ENV ANSIBLE_LINT_VERSION=6.0.2
|
2022-03-15 14:23:01 +01:00
|
|
|
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
|
|
|
|
|
2022-04-13 13:38:00 +02:00
|
|
|
# cleanup
|
2022-03-15 14:23:01 +01:00
|
|
|
RUN rm -rf /var/cache/apk/*
|
|
|
|
|
|
|
|
# install ansible + linters
|
|
|
|
RUN pip3 install --upgrade pip
|
2022-04-13 13:40:11 +02:00
|
|
|
RUN pip3 install ansible-base==${ANSIBLE_VERSION}
|
2022-03-15 14:23:01 +01:00
|
|
|
RUN pip3 install ansible-lint==${ANSIBLE_LINT_VERSION}
|
|
|
|
RUN pip3 install yamllint==${YAML_LINT_VERSION}
|