Merge pull request #9626 from iNavFlight/mmosca-msp-displayport-boxcamera
[inav.git] / Dockerfile
blob71077c8ed96850cf11204e1efa77e221628c62e6
1 FROM ubuntu:jammy
3 ARG USER_ID
4 ARG GROUP_ID
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 ninja-build gdb
9 RUN pip install pyyaml
11 # if either of these are already set the same as the user's machine, leave them be and ignore the error
12 RUN if [ -n "$USER_ID" ]; then RUN addgroup --gid $GROUP_ID inav; exit 0; fi
13 RUN if [ -n "$USER_ID" ]; then  RUN adduser --disabled-password --gecos '' --uid $USER_ID --gid $GROUP_ID inav; exit 0; fi
15 RUN if [ -n "$USER_ID" ]; then USER inav; fi
16 RUN git config --global --add safe.directory /src
18 VOLUME /src
20 WORKDIR /src/build
21 ENTRYPOINT ["/src/cmake/docker.sh"]