MissouriMRDT / Autonomy_Software

Use any one of wget or curl but not both DOK-DL4001
Anti-pattern
Minor
4 days ago14 days old
Either use Wget or Curl but not both
114
115# Install Google Test
116ARG GTEST_VERSION="1.15.2"
117RUN wget -q https://github.com/MissouriMRDT/Autonomy_Packages/raw/main/gtest/arm64/gtest_${GTEST_VERSION}_arm64.deb && \118    dpkg -i gtest_${GTEST_VERSION}_arm64.deb && \
119    rm gtest_${GTEST_VERSION}_arm64.deb
120
Either use Wget or Curl but not both
108
109# Install Quill
110ARG QUILL_VERSION="7.1.0"
111RUN wget -q https://github.com/MissouriMRDT/Autonomy_Packages/raw/main/quill/arm64/quill_${QUILL_VERSION}_arm64.deb && \112    dpkg -i quill_${QUILL_VERSION}_arm64.deb && \
113    rm quill_${QUILL_VERSION}_arm64.deb
114
Either use Wget or Curl but not both
102
103# Install Tensorflow.
104ARG TENSORFLOW_VERSION="2.15.0"
105RUN wget -q https://github.com/MissouriMRDT/Autonomy_Packages/raw/main/tensorflow/arm64/tensorflow_${TENSORFLOW_VERSION}_arm64.deb && \106    dpkg -i tensorflow_${TENSORFLOW_VERSION}_arm64.deb && \
107    rm tensorflow_${TENSORFLOW_VERSION}_arm64.deb
108
Either use Wget or Curl but not both
 96
 97# Install GeographicLib
 98ARG GEOLIB_VERSION="2.3"
 99RUN wget -q https://github.com/MissouriMRDT/Autonomy_Packages/raw/main/geolib/arm64/geolib_${GEOLIB_VERSION}_arm64.deb && \100    dpkg -i geolib_${GEOLIB_VERSION}_arm64.deb && \
101    rm geolib_${GEOLIB_VERSION}_arm64.deb
102
Either use Wget or Curl but not both
 90
 91# Install Abseil.
 92ARG ABSEIL_VERSION="20230802.1"
 93RUN wget -q https://github.com/MissouriMRDT/Autonomy_Packages/raw/main/abseil/arm64/abseil_${ABSEIL_VERSION}_arm64.deb && \ 94    dpkg -i abseil_${ABSEIL_VERSION}_arm64.deb && \
 95    rm abseil_${ABSEIL_VERSION}_arm64.deb
 96