You've already forked yamllint-docker
Compare commits
16 Commits
1e2cd8a123
...
v1.36.2
Author | SHA1 | Date | |
---|---|---|---|
d471ebd82b
|
|||
ccb7f8648a
|
|||
b2d0b1afa5
|
|||
4d6a42376e
|
|||
3e0b6db034
|
|||
d213586484
|
|||
9710d3d75a
|
|||
955bce963c
|
|||
01f334cb27
|
|||
c0013168af
|
|||
9416db9aab
|
|||
ea8855db1e
|
|||
e801b3bbf1
|
|||
8da5d3ffd7
|
|||
05d65f9a8c
|
|||
bf90bd6727
|
@ -16,7 +16,7 @@ steps:
|
|||||||
- name: markdown lint
|
- name: markdown lint
|
||||||
commands:
|
commands:
|
||||||
- markdownlint *.md
|
- markdownlint *.md
|
||||||
image: git.cryptic.systems/volker.raschek/markdownlint:0.43.0
|
image: git.cryptic.systems/volker.raschek/markdownlint:0.44.0
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 150
|
cpu: 150
|
||||||
@ -399,7 +399,7 @@ steps:
|
|||||||
from_secret: container_image_registry_user
|
from_secret: container_image_registry_user
|
||||||
DEST_CRED_PASSWORD:
|
DEST_CRED_PASSWORD:
|
||||||
from_secret: container_image_registry_password
|
from_secret: container_image_registry_password
|
||||||
image: quay.io/skopeo/stable:v1.17.0
|
image: quay.io/skopeo/stable:v1.18.0
|
||||||
|
|
||||||
- name: email-notification
|
- name: email-notification
|
||||||
environment:
|
environment:
|
||||||
@ -639,7 +639,7 @@ steps:
|
|||||||
from_secret: container_image_registry_user
|
from_secret: container_image_registry_user
|
||||||
DEST_CRED_PASSWORD:
|
DEST_CRED_PASSWORD:
|
||||||
from_secret: container_image_registry_password
|
from_secret: container_image_registry_password
|
||||||
image: quay.io/skopeo/stable:v1.17.0
|
image: quay.io/skopeo/stable:v1.18.0
|
||||||
|
|
||||||
- name: email-notification
|
- name: email-notification
|
||||||
environment:
|
environment:
|
||||||
|
11
Dockerfile
11
Dockerfile
@ -1,4 +1,4 @@
|
|||||||
FROM docker.io/library/alpine:3.21.3 AS build
|
FROM docker.io/library/python:3.13.2-alpine AS build
|
||||||
|
|
||||||
ARG YAMLLINT_VERSION=master
|
ARG YAMLLINT_VERSION=master
|
||||||
|
|
||||||
@ -8,9 +8,12 @@ RUN set -ex && \
|
|||||||
apk add git python3 py-pip
|
apk add git python3 py-pip
|
||||||
|
|
||||||
RUN git clone --branch ${YAMLLINT_VERSION} https://github.com/adrienverge/yamllint /tmp/yamllint && \
|
RUN git clone --branch ${YAMLLINT_VERSION} https://github.com/adrienverge/yamllint /tmp/yamllint && \
|
||||||
python3 -m pip install /tmp/yamllint && \
|
python3 -m venv /venv && \
|
||||||
rm -rf /tmp/yamllint
|
/venv/bin/pip3 install /tmp/yamllint && \
|
||||||
|
rm -r -f /tmp/yamllint
|
||||||
|
|
||||||
|
ENV PATH="/venv/bin:${PATH}"
|
||||||
|
|
||||||
WORKDIR /workspace
|
WORKDIR /workspace
|
||||||
|
|
||||||
ENTRYPOINT [ "/usr/bin/yamllint" ]
|
ENTRYPOINT [ "yamllint" ]
|
||||||
|
6
Makefile
6
Makefile
@ -1,6 +1,6 @@
|
|||||||
# YAMLLINT_VERSION
|
# YAMLLINT_VERSION
|
||||||
# Only required to install a specifiy version
|
# Only required to install a specifiy version
|
||||||
YAMLLINT_VERSION?=v1.37.0 # renovate: datasource=github-releases depName=adrienverge/yamllint
|
YAMLLINT_VERSION?=v1.36.2 # renovate: datasource=github-releases depName=adrienverge/yamllint
|
||||||
|
|
||||||
# CONTAINER_RUNTIME
|
# CONTAINER_RUNTIME
|
||||||
# The CONTAINER_RUNTIME variable will be used to specified the path to a
|
# The CONTAINER_RUNTIME variable will be used to specified the path to a
|
||||||
@ -9,8 +9,8 @@ CONTAINER_RUNTIME?=$(shell which podman)
|
|||||||
|
|
||||||
# YAMLLINT_IMAGE_REGISTRY_NAME
|
# YAMLLINT_IMAGE_REGISTRY_NAME
|
||||||
# Defines the name of the new container to be built using several variables.
|
# Defines the name of the new container to be built using several variables.
|
||||||
YAMLLINT_IMAGE_REGISTRY_NAME:=git.cryptic.systems
|
YAMLLINT_IMAGE_REGISTRY_NAME?=git.cryptic.systems
|
||||||
YAMLLINT_IMAGE_REGISTRY_USER:=volker.raschek
|
YAMLLINT_IMAGE_REGISTRY_USER?=volker.raschek
|
||||||
|
|
||||||
YAMLLINT_IMAGE_NAMESPACE?=${YAMLLINT_IMAGE_REGISTRY_USER}
|
YAMLLINT_IMAGE_NAMESPACE?=${YAMLLINT_IMAGE_REGISTRY_USER}
|
||||||
YAMLLINT_IMAGE_NAME:=yamllint
|
YAMLLINT_IMAGE_NAME:=yamllint
|
||||||
|
Reference in New Issue
Block a user