diff --git a/docker/Dockerfile.restapi b/docker/Dockerfile.restapi index 83c18cd1..2ea7b608 100644 --- a/docker/Dockerfile.restapi +++ b/docker/Dockerfile.restapi @@ -5,6 +5,10 @@ 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 + +# Install git 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 \