Skip to content

Commit

Permalink
move to correct dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
immel-f committed Feb 12, 2024
1 parent a710616 commit cf992c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/conan_dockerfile/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ RUN sudo -E apt-get update \
ARG PY_VERSION=3.8
RUN pyenv install -s $PY_VERSION \
&& pyenv global $PY_VERSION
RUN pip install "conan==1.59.0" catkin_pkg numpy wheel auditwheel cmake
RUN pip install "conan==1.59.0" catkin_pkg oldest-supported-numpy wheel auditwheel cmake
# oldest-supported-numpy for ABI compatibility

# install patchelf
RUN wget https://github.com/NixOS/patchelf/releases/download/0.17.2/patchelf-0.17.2-x86_64.tar.gz \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ RUN if [ "${ROS_DISTRO}" = "melodic" ] || [ "${ROS_DISTRO}" = "kinetic" ]; \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# install python dependencies (oldest-supported-numpy for ABI compatibility)
RUN pip install oldest-supported-numpy
# install python dependencies (numpy)
RUN pip install numpy

# ros version specific dependencies
RUN set -ex; \
Expand Down

0 comments on commit cf992c1

Please sign in to comment.