78
78
79
79
# Using the pre-built image for above commented out dockerfile code lines
80
80
# hadolint ignore=DL3007
81
- FROM --platform=linux/arm64 woensugchoi/ubuntu-arm-rdp-base:latest
81
+ FROM woensugchoi/ubuntu-arm-rdp-base:latest
82
82
ARG USER=docker
83
83
84
- # Install packages (added for Ardusub)
85
- ENV DEBIAN_FRONTEND=noninteractive
86
- ENV DEBCONF_NONINTERACTIVE_SEEN=true
87
- # hadolint ignore=DL3008
88
- RUN apt-get update && \
89
- apt-get install -y --no-install-recommends \
90
- python-is-python3 python3-future python3-wxgtk4.0 python3-pexpect \
91
- libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
92
- libgz-sim8-dev rapidjson-dev libopencv-dev \
93
- gstreamer1.0-plugins-bad gstreamer1.0-libav gstreamer1.0-gl \
94
- && rm -rf /var/lib/apt/lists/
95
-
96
84
# ROS-Gazebo arg
97
85
ARG BRANCH="ros2"
98
86
ARG ROS_DISTRO="jazzy"
@@ -103,6 +91,16 @@ extras/ros-jazzy-binary-gz-harmonic-source-install.sh install.sh
103
91
RUN bash install.sh
104
92
105
93
# Install Ardusub
94
+ ENV DEBIAN_FRONTEND=noninteractive
95
+ ENV DEBCONF_NONINTERACTIVE_SEEN=true
96
+ # hadolint ignore=DL3008
97
+ RUN apt-get -q update && \
98
+ apt-get install -y --no-install-recommends \
99
+ python-is-python3 python3-future python3-wxgtk4.0 python3-pexpect \
100
+ libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
101
+ libgz-sim8-dev rapidjson-dev libopencv-dev \
102
+ gstreamer1.0-plugins-bad gstreamer1.0-libav gstreamer1.0-gl \
103
+ && rm -rf /var/lib/apt/lists/
106
104
ADD https://raw.githubusercontent.com/IOES-Lab/dave/dockertest/\
107
105
extras/ardusub-ubuntu-install.sh install.sh
108
106
RUN bash install.sh
0 commit comments