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 \