File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 41
41
python -m pip install --no-cache-dir -r requirements-dev.txt
42
42
- name : Set up docker containers
43
43
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"
46
46
docker ps -a
47
47
- name : Run linter
48
48
run : |
Original file line number Diff line number Diff line change 1
- FROM ros:kinetic
1
+ FROM ros:noetic
2
2
LABEL maintainer
"Gonzalo Casas <[email protected] >"
3
3
4
+ SHELL ["/bin/bash" ,"-c" ]
5
+
4
6
# Install rosbridge
5
7
RUN 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 \
9
12
--no-install-recommends \
10
13
# Clear apt-cache to reduce image size
11
14
&& rm -rf /var/lib/apt/lists/*
@@ -17,4 +20,4 @@ COPY ./integration-tests.launch /
17
20
EXPOSE 9090
18
21
19
22
ENTRYPOINT ["/ros_entrypoint.sh" ]
20
- CMD ["/bin/ bash" ]
23
+ CMD ["bash" ]
You can’t perform that action at this time.
0 commit comments