Public Access
Post-merge / detect-type (push) Successful in 12s
Post-merge / validate-commit-msg (push) Successful in 11s
Post-merge / configure-repo (push) Successful in 17s
Post-merge / vikunja (push) Successful in 23s
Post-merge / sync-wiki (push) Successful in 29s
Post-merge / release (push) Successful in 43s
Post-merge / publish (push) Successful in 23s
Post-merge / badges (push) Failing after 31s
23 lines
884 B
Docker
23 lines
884 B
Docker
# ci-quality — image for lint, type-checking, badge generation.
|
|
#
|
|
# Used by: quality (lint-all + pytest-cov + checks), badges (generate_badges
|
|
# runs ruff/pyright/bandit to produce quality badge)
|
|
#
|
|
# Layers on top of ci-base: adds lint tools + actionlint + checkmake.
|
|
|
|
FROM git.oblachno.oblachno.fyi/oblachno-oss/runner-images/ci-base:latest
|
|
|
|
# Install devx[lint] from local source (adds ruff, pyright, bandit, etc.)
|
|
COPY . /tmp/devx
|
|
RUN pip install --no-cache-dir /tmp/devx[lint] \
|
|
&& rm -rf /tmp/devx
|
|
|
|
# Install CI/CD binary tools
|
|
RUN python3 -m devx.tools.install_tools --tool actionlint --tool vale \
|
|
&& python3 -m devx.tools.install_checkmake
|
|
|
|
# Install hadolint (Dockerfile linter)
|
|
RUN curl -fsSL "https://github.com/hadolint/hadolint/releases/download/v2.12.0/hadolint-Linux-x86_64" \
|
|
-o /usr/local/bin/hadolint \
|
|
&& chmod +x /usr/local/bin/hadolint
|