fix: add ansible-lint
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Markus Pesch 2023-02-08 19:32:20 +01:00
parent c1df951665
commit ea0a8292a9
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982

View File

@ -2,6 +2,8 @@ FROM docker.io/library/archlinux:latest
RUN pacman --sync --sysupgrade --refresh --noconfirm && \ RUN pacman --sync --sysupgrade --refresh --noconfirm && \
pacman --sync --noconfirm \ pacman --sync --noconfirm \
ansible \
ansible-lint \
base-devel \ base-devel \
libffi \ libffi \
openssl \ openssl \
@ -20,9 +22,6 @@ RUN pacman --sync --sysupgrade --refresh --noconfirm && \
# Fix potential UTF-8 errors with ansible-test # Fix potential UTF-8 errors with ansible-test
RUN locale-gen en_US.UTF-8 RUN locale-gen en_US.UTF-8
# Install Ansible via pip
RUN pip3 install ansible
# COPY initctl_faker . # COPY initctl_faker .
# RUN chmod +x initctl_faker && \ # RUN chmod +x initctl_faker && \
# rm --recursive --force /sbin/initctl && \ # rm --recursive --force /sbin/initctl && \