Skip to content

Commit 0cc1fc5

Browse files
committed
use latest python packages
1 parent e93438f commit 0cc1fc5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docker/Dockerfile.pytest.gcc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ ENV DEBIAN_FRONTEND=noninteractive
77
RUN apt-get update && apt-get install --no-install-recommends -y \
88
&& apt-get install --no-install-recommends -y \
99
wget nano build-essential git cmake python3-dev python3-pip pybind11-dev \
10-
python3-pytest python3-numpy python3-scipy \
1110
libeigen3-dev libomp-dev
1211

1312
RUN mkdir -p ~/.config/pip
1413
RUN echo "[global]\nbreak-system-packages=true" > ~/.config/pip/pip.conf
1514

15+
RUN pip install pytest numpy scipy
16+
1617
COPY . /root/small_gicp
1718

1819
WORKDIR /root/small_gicp

docker/Dockerfile.pytest.llvm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ ENV DEBIAN_FRONTEND=noninteractive
77
RUN apt-get update && apt-get install --no-install-recommends -y \
88
&& apt-get install --no-install-recommends -y \
99
wget nano build-essential git cmake python3-dev python3-pip pybind11-dev \
10-
python3-pytest python3-numpy python3-scipy \
1110
libeigen3-dev libomp-dev
1211

1312
RUN apt-get update && apt-get install --no-install-recommends -y \
@@ -21,6 +20,8 @@ ENV CXX=clang++
2120
RUN mkdir -p ~/.config/pip
2221
RUN echo "[global]\nbreak-system-packages=true" > ~/.config/pip/pip.conf
2322

23+
RUN pip install pytest numpy scipy
24+
2425
COPY . /root/small_gicp
2526

2627
WORKDIR /root/small_gicp

0 commit comments

Comments
 (0)