From 10599bfcc479db0999339ffa0abd4ba0e1feabae Mon Sep 17 00:00:00 2001 From: Stephen L Arnold Date: Tue, 13 Sep 2022 17:26:03 -0700 Subject: [PATCH] chg: dev: force pystache install in Docker env * work-around for bare Pypi dep being ignored causing CI error: Required 'pystache' python module not found. Signed-off-by: Stephen L Arnold --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3c347b1..ddcb5f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,9 @@ 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/