From 305fc55388930e87893f88e3ea7ce5c9385887d8 Mon Sep 17 00:00:00 2001 From: Tully Foote Date: Thu, 4 Jan 2024 20:26:05 -0800 Subject: [PATCH] restore gitpython needed for upload Signed-off-by: Tully Foote --- docker/image/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/image/Dockerfile b/docker/image/Dockerfile index 294086b..a51d9d4 100644 --- a/docker/image/Dockerfile +++ b/docker/image/Dockerfile @@ -39,6 +39,9 @@ RUN apt-get update && \ rm -rf /var/lib/apt/lists/* RUN gem install bundle +RUN pip3 install --upgrade setuptools pip +# For uploading +RUN pip3 install gitpython RUN ln -s `which nodejs` /usr/local/bin/node