5 ENV DEBIAN_FRONTEND noninteractive
7 RUN apt-get update && apt-get install -y git cmake make ruby gcc python3 python3-pip gcc-arm-none-eabi
11 # if either of these are already set the same as the user's machine, leave them be and ignore the error
12 RUN addgroup --gid $GROUP_ID inav; exit 0;
13 RUN adduser --disabled-password --gecos '' --uid $USER_ID --gid $GROUP_ID inav; exit 0;
16 RUN git config --global --add safe.directory /src
21 ENTRYPOINT ["/src/cmake/docker.sh"]