9 lines
156 B
Docker
9 lines
156 B
Docker
FROM osrf/ros:jazzy-desktop-full
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install qterminal mesa-utils -y
|
|
|
|
COPY ./launcher.py /launcher.py
|
|
CMD python3 /launcher.py
|
|
|