From 87ad76bb3414f4bf39f966d025cc3355d703e397 Mon Sep 17 00:00:00 2001 From: Andy Cobaugh Date: Mon, 17 Jul 2023 14:31:50 -0400 Subject: [PATCH] fix: workaround for https://github.com/yaml/pyyaml/issues/724 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 38045b2..7615604 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ENV REVIEWDOG_VERSION=v0.14.2 RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION} RUN apk --no-cache add git -RUN pip install yamllint +RUN pip install "cython<3.0.0" && pip install --no-build-isolation pyyaml==6.0 COPY entrypoint.sh /entrypoint.sh