File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -29,9 +29,9 @@ RUN cat python_versions.txt | while read version; do pyenv install $version ; d
29
29
30
30
# update cmake to 3.20
31
31
RUN sudo apt-get remove cmake
32
- RUN wget -nv https://cmake.org/files/v3.20/cmake-3.20.0-rc1-linux-x86_64 .tar.gz
33
- RUN tar -xf cmake-3.20.0-rc1-linux-x86_64 .tar.gz
34
- RUN sudo ln -sf ~/cmake-3.20.0-rc1-linux-x86_64 /bin/* /usr/bin
32
+ RUN wget -nv https://cmake.org/files/v3.20/cmake-3.20.0-rc1-linux-$(uname -m) .tar.gz
33
+ RUN tar -xf cmake-3.20.0-rc1-linux-$(uname -m) .tar.gz
34
+ RUN sudo ln -sf ~/cmake-3.20.0-rc1-linux-$(uname -m) /bin/* /usr/bin
35
35
36
36
# Prebuild
37
37
RUN sudo apt-get install -y libeigen3-dev libgtest-dev libgflags-dev libgoogle-glog-dev libprotobuf-dev protobuf-compiler
49
49
50
50
RUN \
51
51
cd voxbloxpy && \
52
- cat ../python_versions.txt | while read version; do pyenv global $version && python setup.py bdist_wheel -p manylinux1_x86_64 ; done
52
+ cat ../python_versions.txt | while read version; do pyenv global $version && python setup.py bdist_wheel -p manylinux2014_$(uname -m) ; done
53
53
54
54
COPY check_glibcxx.sh $HOME/
55
55
RUN bash ./check_glibcxx.sh
You can’t perform that action at this time.
0 commit comments