From 31fcd1b7622d39f98a9a20d318c27b1b84a009ca Mon Sep 17 00:00:00 2001 From: Stephen L Arnold Date: Mon, 26 Sep 2022 11:27:15 -0700 Subject: [PATCH] fix: switch pip install to source tarball until pypi deps are fixed * pystache 0.6.1 has bad version (0.6.0) on both GH and pypi * action/Docker env started failing dep installs, and now * pip no longer installs from github release page links Signed-off-by: Stephen L Arnold --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index ddcb5f0..6988309 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,11 +15,7 @@ RUN apk --no-cache add \ git \ py3-pip -RUN pip install pystache>=0.6.0 --prefer-binary \ - -f https://github.com/sarnold/pystache/releases/ - -RUN pip install gitchangelog>=3.0.9 --prefer-binary \ - -f https://github.com/sarnold/gitchangelog/releases/ +RUN pip install https://github.com/sarnold/gitchangelog/archive/refs/tags/3.0.9.tar.gz ADD ./gitchangelog-release.rc /gitchangelog-release.rc