From e83b6a587bdca2bfa348525f5a89d28553fb0cd2 Mon Sep 17 00:00:00 2001 From: jtyoung84 <104453205+jtyoung84@users.noreply.github.com> Date: Tue, 24 Sep 2024 16:58:31 -0700 Subject: [PATCH] fix: adds git to docker image --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 94a00ea..508395b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,9 @@ ADD src ./src ADD pyproject.toml . ADD setup.py . +# Add git in case we need to install from branches +RUN apt-get update && apt-get install -y git + # Pip command. Without '-e' flag, index.html isn't found. There's probably a # better way to add the static html files to the site-packages. RUN pip install -e .[server] --no-cache-dir