Update ros2-over-ethernet.rst to fix issue with ip adresses of companion and ardupilot #597
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build dockerfile | |
on: [push, pull_request] | |
jobs: | |
build-docker: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false # don't cancel if a job from the matrix fails | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build image | |
run: | | |
docker build . -t ardupilot_wiki --build-arg USER_UID=$(id -u) --build-arg USER_GID=$(id -g) |