fix(Dockerfile): use python venv
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
bf90bd6727
commit
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" ]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user