From fd0423124d4afe3718a9498ca0193748fded4560 Mon Sep 17 00:00:00 2001 From: Kyrylo Hrymailo Date: Mon, 7 Aug 2023 17:44:37 +0200 Subject: [PATCH] added installing of git in Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5eb3671..ffcfecb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,8 @@ COPY docker_overlay/ / WORKDIR /app COPY . /app +RUN apt-get update; \ + apt-get install -y git; RUN pip install /app CMD [ "neon-llm-fastchat" ] \ No newline at end of file