bottleneck: fix build (#9497)

Signed-off-by: David Korczynski <david@adalogics.com>

Signed-off-by: David Korczynski <david@adalogics.com>
This commit is contained in:
DavidKorczynski 2023-01-24 22:18:08 +01:00 committed by GitHub
parent 8df1de8725
commit 700fd90d10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions

View File

@ -16,11 +16,7 @@
FROM gcr.io/oss-fuzz-base/base-builder-python FROM gcr.io/oss-fuzz-base/base-builder-python
RUN apt-get update && apt-get install -y make autoconf automake libtool RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN pip3 install --upgrade pip && pip3 install cython RUN pip3 install --upgrade pip && pip3 install cython numpy
RUN git clone https://github.com/numpy/numpy && cd numpy && git submodule update --init
RUN cd $SRC/numpy && \
pip3 install . && \
python3 setup.py install
RUN git clone --depth 1 https://github.com/pydata/bottleneck RUN git clone --depth 1 https://github.com/pydata/bottleneck
WORKDIR bottleneck WORKDIR bottleneck
COPY build.sh *.py $SRC/ COPY build.sh *.py $SRC/