You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN wget -P /tmp "https://developer.arm.com/-/media/Files/downloads/gnu-rm/$TOOLCHAIN_VERSION_SHORT/gcc-arm-none-eabi-$TOOLCHAIN_VERSION_LONG-x86_64-linux.tar.bz2"
18
-
RUN mkdir -p /opt && \
19
-
cd /opt && \
20
-
tar xvjf "/tmp/gcc-arm-none-eabi-$TOOLCHAIN_VERSION_LONG-x86_64-linux.tar.bz2" -C /opt && \
Copy file name to clipboardexpand all lines: docs/development/Building in Docker.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ You'll have to manually execute the same steps that the build script does:
28
28
29
29
1.`docker build -t inav-build .`
30
30
+ This step is only needed the first time.
31
-
2.`docker run --rm -v <PATH_TO_REPO>:/home/src/ inav-build make TARGET=<TARGET>`
31
+
2.`docker run --rm -it -v <PATH_TO_REPO>:/src inav-build <TARGET>`
32
32
+ Where `<PATH_TO_REPO>` must be replaced with the absolute path of where you cloned this repo (see above), and `<TARGET>` with the name of the target that you want to build.
33
33
34
34
Refer to the [Linux](#Linux) instructions or the [build script](/build.sh) for more details.
0 commit comments