Compare commits
14 Commits
1dae9b3492
...
5e4281f635
Author | SHA1 | Date | |
---|---|---|---|
5e4281f635 | |||
5c26d63327 | |||
887f102166 | |||
dbe13dccb4 | |||
ebe03abd1c | |||
5f6671afd5 | |||
d4902669d8 | |||
5afbf8a487 | |||
b3a6fa9443 | |||
ddc3b19ba2 | |||
a0bd2018e2 | |||
1e76e0194e | |||
0d567bab32 | |||
05d65f9a8c |
18
.drone.yml
18
.drone.yml
@ -16,7 +16,7 @@ steps:
|
||||
- name: markdown lint
|
||||
commands:
|
||||
- markdownlint *.md
|
||||
image: git.cryptic.systems/volker.raschek/markdownlint:0.43.0
|
||||
image: git.cryptic.systems/volker.raschek/markdownlint:0.44.0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
@ -69,7 +69,7 @@ steps:
|
||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||
|
||||
- name: build
|
||||
image: docker.io/plugins/docker:20.18.6
|
||||
image: docker.io/plugins/docker:20.18.8
|
||||
settings:
|
||||
auto_tag: false
|
||||
dockerfile: Dockerfile
|
||||
@ -135,7 +135,7 @@ steps:
|
||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||
|
||||
- name: build
|
||||
image: docker.io/plugins/docker:20.18.6
|
||||
image: docker.io/plugins/docker:20.18.8
|
||||
settings:
|
||||
auto_tag: false
|
||||
dockerfile: Dockerfile
|
||||
@ -201,7 +201,7 @@ steps:
|
||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||
|
||||
- name: build
|
||||
image: docker.io/plugins/docker:20.18.6
|
||||
image: docker.io/plugins/docker:20.18.8
|
||||
settings:
|
||||
auto_tag: false
|
||||
dockerfile: Dockerfile
|
||||
@ -265,7 +265,7 @@ steps:
|
||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||
|
||||
- name: build
|
||||
image: docker.io/plugins/docker:20.18.6
|
||||
image: docker.io/plugins/docker:20.18.8
|
||||
settings:
|
||||
auto_tag: false
|
||||
dockerfile: Dockerfile
|
||||
@ -399,7 +399,7 @@ steps:
|
||||
from_secret: container_image_registry_user
|
||||
DEST_CRED_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
|
||||
environment:
|
||||
@ -449,7 +449,7 @@ steps:
|
||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||
|
||||
- name: build
|
||||
image: docker.io/plugins/docker:20.18.6
|
||||
image: docker.io/plugins/docker:20.18.8
|
||||
settings:
|
||||
auto_tag: true
|
||||
auto_tag_suffix: amd64
|
||||
@ -509,7 +509,7 @@ steps:
|
||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||
|
||||
- name: build
|
||||
image: docker.io/plugins/docker:20.18.6
|
||||
image: docker.io/plugins/docker:20.18.8
|
||||
settings:
|
||||
auto_tag: true
|
||||
auto_tag_suffix: arm64-v8
|
||||
@ -639,7 +639,7 @@ steps:
|
||||
from_secret: container_image_registry_user
|
||||
DEST_CRED_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
|
||||
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
|
||||
|
||||
@ -8,9 +8,12 @@ RUN set -ex && \
|
||||
apk add git python3 py-pip
|
||||
|
||||
RUN git clone --branch ${YAMLLINT_VERSION} https://github.com/adrienverge/yamllint /tmp/yamllint && \
|
||||
python3 -m pip install /tmp/yamllint && \
|
||||
rm -rf /tmp/yamllint
|
||||
python3 -m venv /venv && \
|
||||
/venv/bin/pip3 install /tmp/yamllint && \
|
||||
rm -r -f /tmp/yamllint
|
||||
|
||||
ENV PATH="/venv/bin:${PATH}"
|
||||
|
||||
WORKDIR /workspace
|
||||
|
||||
ENTRYPOINT [ "/usr/bin/yamllint" ]
|
||||
ENTRYPOINT [ "yamllint" ]
|
||||
|
2
Makefile
2
Makefile
@ -1,6 +1,6 @@
|
||||
# YAMLLINT_VERSION
|
||||
# Only required to install a specifiy version
|
||||
YAMLLINT_VERSION?=v1.28.0 # renovate: datasource=github-releases depName=adrienverge/yamllint
|
||||
YAMLLINT_VERSION?=v1.37.0 # renovate: datasource=github-releases depName=adrienverge/yamllint
|
||||
|
||||
# CONTAINER_RUNTIME
|
||||
# The CONTAINER_RUNTIME variable will be used to specified the path to a
|
||||
|
Loading…
x
Reference in New Issue
Block a user