Hi, I´m trying to create an image with the contents of siemens/ros-sharp from github.
For that I used the comands available from the Ros containers in the dockerhub.
Dockerfile:
FROM ros:kinetic-ros-core-xenial
RUN apt-get update && apt-get install -y
ros-kinetic-ros-base=1.3.2-0*
&& rm -rf /var/lib/apt/lists/*
#until here everything works, however, I have to install the rosbridge server or suite and it says that it does not exist.
RUN apt-get install ros-kinetic-rosbridge-suite
I have written this as said in the tutorial from siemens, but doing it in docker is diferent so I do not know why it does not work.
Also, I have to build the file as said in the link, and I do not know how, I tried the next two lines and neither works.
RUN catkin_make
RUN catkin build
The code in the dockerfile for now it is just that because it did not work. If there is someone who knows how to do it.
FROM ros:kinetic-ros-core-xenial
RUN apt-get update && apt-get install -y
ros-kinetic-ros-base=1.3.2-0*
&& rm -rf /var/lib/apt/lists/*
RUN apt-get install ros-kinetic-rosbridge-suite
COPY file_server /src/file_server
RUN catkin_make