From 58091270621d4dff0b2298ad5872b7fc350f6c25 Mon Sep 17 00:00:00 2001 From: mawaki <81884297+mawaki@users.noreply.github.com> Date: Mon, 29 Apr 2024 20:00:32 -0400 Subject: [PATCH] Update Dockerfile.full To avoid issues (No such file or directory: 'git' while executing command git version) with git when cloning this repository and building docker compose from the clone --- docker/Dockerfile.full | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/Dockerfile.full b/docker/Dockerfile.full index 9225585e..570a4d97 100644 --- a/docker/Dockerfile.full +++ b/docker/Dockerfile.full @@ -5,6 +5,9 @@ MAINTAINER Jookies LTD # add our user and group first to make sure their IDs get assigned consistently, regardless of whatever dependencies get added RUN groupadd -r jasmin && useradd -r -g jasmin jasmin +# To avoid issues (No such file or directory: 'git' while executing command git version) with git when cloning this repository and building docker compose from the clone +RUN apt-get update && apt-get install -y git + # Install requirements RUN apt-get update && apt-get install -y \ libffi-dev \