Skip to content

Commit

Permalink
ci(lint): adding docker linter
Browse files Browse the repository at this point in the history
Signed-off-by: Boris Glimcher <[email protected]>
Signed-off-by: Boris Glimcher <[email protected]>
  • Loading branch information
glimchb committed Jan 12, 2024
1 parent 0de707c commit c33ff8c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ansible-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ jobs:
- name: Run tests
run: docker run -v $PWD:/workdir ghcr.io/igorshubovych/markdownlint-cli:latest --disable=MD013 "**/*.md" || true

docker-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hadolint/[email protected]
with:
recursive: false
ignore: DL3041,DL3059,DL3013

ansible-lint:

runs-on: ubuntu-latest
Expand Down
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM rockylinux:8.8
WORKDIR /app

# why this is not part of prereq.sh ?
RUN dnf install -y python38 iproute
RUN dnf install -y python38 iproute && dnf clean all

# prereq
RUN echo "SELINUX=disabled" > /etc/selinux/config
Expand All @@ -19,14 +19,15 @@ RUN dnf install -y \
net-snmp \
net-snmp-utils \
sshpass \
python3-pexpect
python3-pexpect \
&& dnf clean all

# why above RPMs are not enough ?
RUN python3 -m pip install netaddr pexpect
RUN python3 -m pip install --no-cache-dir netaddr pexpect

# why this is not part of prereq.sh ?
# see telemetry/roles/omnia_telemetry_cp/tasks/python_package_installation.yml
RUN python3 -m pip install pyinstaller psutil
RUN python3 -m pip install --no-cache-dir pyinstaller psutil

ENTRYPOINT ["ansible-playbook"]
CMD ["prepare_cp.yml", "-vv"]

0 comments on commit c33ff8c

Please sign in to comment.