From 6feaedf4059397daaad6ec2f126da06c1b66158a Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Fri, 15 Oct 2021 14:48:07 +0200 Subject: [PATCH] fix: add missing bash for entrypoint --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1665560..d8f4412 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.14 # renovate: datasource=pypi depName=yamllint ENV YAMLLINT_VERSION=1.26.3 -RUN apk add --no-cache python3 python3-dev py3-pip && \ +RUN apk add --no-cache bash python3 python3-dev py3-pip && \ pip3 install -U yamllint==${YAMLLINT_VERSION} && \ rm -rf /root/.cache