Compare commits
14 Commits
1dae9b3492
...
5e4281f635
Author | SHA1 | Date | |
---|---|---|---|
5e4281f635 | |||
5c26d63327 | |||
887f102166 | |||
dbe13dccb4 | |||
ebe03abd1c | |||
5f6671afd5 | |||
d4902669d8 | |||
5afbf8a487 | |||
b3a6fa9443 | |||
ddc3b19ba2 | |||
a0bd2018e2 | |||
1e76e0194e | |||
0d567bab32 | |||
05d65f9a8c |
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" ]
|
||||||
|
2
Makefile
2
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.28.0 # renovate: datasource=github-releases depName=adrienverge/yamllint
|
YAMLLINT_VERSION?=v1.37.0 # 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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user