From 05d65f9a8ca784137d1fb45e76052397e0f313e0 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Tue, 1 Apr 2025 22:03:54 +0200 Subject: [PATCH] fix(Dockerfile): use python venv --- Dockerfile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 730c4cf..467ce7c 100644 --- a/Dockerfile +++ b/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" ]