From 4ec5cca187c2cfbac53914b426e0b4fd9a802780 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20S=C3=A1nchez-Gallego?= Date: Wed, 17 Jan 2024 05:13:08 +0000 Subject: [PATCH] Install git in docker image --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 65b2dc0..a622306 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,8 @@ WORKDIR /root COPY . cerebro +RUN apt install -y git + RUN cd cerebro && pip install . # Entry point is just the naked command. It is expected that