Merge pull request #8624 from breadoven/abo_osd_element_display_fix
[inav.git] / Dockerfile
blob51d751ae54164df356a105396d4fced30837514d
1 FROM ubuntu:focal
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
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 addgroup --gid $GROUP_ID users; exit 0;
13 RUN adduser --disabled-password --gecos '' --uid $USER_ID --gid $GROUP_ID user; exit 0;
15 USER user
16 RUN git config --global --add safe.directory /src
18 VOLUME /src
20 WORKDIR /src/build
21 ENTRYPOINT ["/src/cmake/docker.sh"]