File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4141 python -m pip install --no-cache-dir -r requirements-dev.txt
4242 - name : Set up docker containers
4343 run : |
44- docker build -t gramaziokohler/rosbridge ./docker
45- docker run -d -p 9090:9090 --name rosbridge gramaziokohler/rosbridge /bin/bash -c "roslaunch /integration-tests.launch"
44+ docker build -t gramaziokohler/rosbridge:integration_tests ./docker
45+ docker run -d -p 9090:9090 --name rosbridge gramaziokohler/rosbridge:integration_tests /bin/bash -c "roslaunch /integration-tests.launch"
4646 docker ps -a
4747 - name : Run linter
4848 run : |
Original file line number Diff line number Diff line change 1- FROM ros:kinetic
1+ FROM ros:noetic
22LABEL maintainer "Gonzalo Casas <casas@arch.ethz.ch>"
33
4+ SHELL ["/bin/bash" ,"-c" ]
5+
46# Install rosbridge
57RUN apt-get update && apt-get install -y \
6- ros-kinetic-rosbridge-suite \
7- ros-kinetic-tf2-web-republisher \
8- ros-kinetic-ros-tutorials \
8+ ros-noetic-rosbridge-suite \
9+ ros-noetic-tf2-web-republisher \
10+ ros-noetic-ros-tutorials \
11+ ros-noetic-actionlib-tutorials \
912 --no-install-recommends \
1013 # Clear apt-cache to reduce image size
1114 && rm -rf /var/lib/apt/lists/*
@@ -17,4 +20,4 @@ COPY ./integration-tests.launch /
1720EXPOSE 9090
1821
1922ENTRYPOINT ["/ros_entrypoint.sh" ]
20- CMD ["/bin/ bash" ]
23+ CMD ["bash" ]
You can’t perform that action at this time.
0 commit comments