From c9f077fce9fdca5a97d80d5b2bf3db2f2e483519 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Mon, 7 Aug 2023 21:05:11 +0200 Subject: [PATCH] fix: make ``shyaml`` installation work again --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5380288..3424495 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,6 +56,8 @@ RUN apk --update add binutils && \ ## install shyaml RUN apk add python-dev build-base RUN apk add yaml-dev cython cython-dev && \ + pip install "cython<3.0.0" wheel && \ + pip install pyyaml==5.4.1 --no-build-isolation && \ pip install shyaml RUN pip install crudini