pandas: fix build (#9181)

This commit is contained in:
DavidKorczynski 2022-12-10 21:08:22 +00:00 committed by GitHub
parent 4c08dabcbb
commit 8ad4bc718b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -15,8 +15,10 @@
################################################################################
FROM gcr.io/oss-fuzz-base/base-builder-python
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN pip3 install --upgrade pip Cython numpy
RUN git clone --depth 1 https://github.com/pandas-dev/pandas pandas
RUN apt-get update && apt-get install -y make autoconf automake libtool libffi-dev
RUN pip3 install --upgrade pip Cython numpy versioneer
RUN git clone --depth 1 https://github.com/pandas-dev/pandas pandas && \
cd pandas && \
python3 -m pip install -r requirements-dev.txt
WORKDIR pandas
COPY build.sh *.py $SRC/