From 0a78b7b849a4d9620882b5250a06f2a8ea893a6f Mon Sep 17 00:00:00 2001 From: Bartek Juszczak Date: Wed, 22 Sep 2021 21:03:21 +0100 Subject: [PATCH] Include git When trying to run this project I get a "cookiecutter.exceptions.VCSNotInstalled: 'git' is not installed." So it looks like git needs to be manually installed now --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index bbb5200..27d5544 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ RUN apk add --update \ python \ python-dev \ py-pip \ + git \ g++ && \ pip install cookiecutter && \ apk del g++ py-pip python-dev && \