We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eae5250 commit d064e3fCopy full SHA for d064e3f
slam/Dockerfile
@@ -190,10 +190,9 @@ RUN cd ./yaml-cpp-0.6.0/ \
190
&& env CFLAGS='-fPIC' CXXFLAGS='-fPIC' cmake -DCMAKE_BUILD_TYPE=Release -Bbuild \
191
&& cmake --build build -v
192
193
-RUN cd /home/root/tmp && export CC=gcc-9 && export CXX=g++-9 \
194
- && wget https://github.com/ceres-solver/ceres-solver/archive/refs/tags/2.1.0.tar.gz \
195
- && export CC=gcc-9 && export CXX=g++-9 \
+RUN wget https://github.com/ceres-solver/ceres-solver/archive/refs/tags/2.1.0.tar.gz \
+ && export CC=gcc-9 && export CXX=g++-9 \
196
&& tar zxf 2.1.0.tar.gz && mkdir ceres-bin && cd ceres-bin && cmake ../ceres-solver-2.1.0 \
197
- && make -j8 && make install
+ && make -j8 && make install
198
199
RUN pip3 install matplotlib --upgrade
0 commit comments