From 011c803cec07dac025b29c06fe6ce83a74501f0d Mon Sep 17 00:00:00 2001 From: Tom Fenech Date: Mon, 17 Jul 2023 18:36:59 +0200 Subject: [PATCH] Use Alpine yamllint package --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1be49e0..6b96f0f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,6 @@ FROM python:3-alpine -RUN apk add --no-cache bash gcc musl-dev && \ - pip install 'yamllint>=1.25.0' && \ - rm -rf ~/.cache/pip +RUN apk add --no-cache bash yamllint ADD entrypoint.sh /entrypoint.sh