yamllint-docker/Dockerfile
CSRBot 61a4096fd5
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing
chore(deps): update docker.io/library/alpine docker tag to v3.19.0
2024-01-10 20:17:18 +00:00

17 lines
395 B
Docker

FROM docker.io/library/alpine:3.19.0 AS build
ARG YAMLLINT_VERSION=master
RUN set -ex && \
apk update && \
apk upgrade && \
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
WORKDIR /workspace
ENTRYPOINT [ "/usr/bin/yamllint" ]