repo.or.cz
/
inav.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update navigation.c
[inav.git]
/
Dockerfile
blob
34547f51f92291818e84fcfd6eb65b94f0eca8af
1
FROM ubuntu:focal
2
3
ENV DEBIAN_FRONTEND noninteractive
4
5
RUN apt-get update && apt-get install -y git cmake make ruby gcc python3 python3-pip
6
7
RUN pip install pyyaml
8
9
RUN useradd inav
10
11
USER inav
12
13
VOLUME /src
14
15
WORKDIR /src/build
16
ENTRYPOINT ["/src/cmake/docker.sh"]