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