Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

numpy: Fix build #12989

Merged
merged 1 commit into from
Jan 30, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions projects/numpy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@
################################################################################

FROM gcr.io/oss-fuzz-base/base-builder-python
# Numpy requires python3.11+
RUN apt-get update && \
apt-get install -y software-properties-common && \
add-apt-repository ppa:deadsnakes/ppa && \
apt-get install -y python3.11 python3.11-dev && \
update-alternatives --install /usr/local/bin/python3 python $(which python3.11) 5
# Install Python dependencies for python 3.11
RUN curl -LO https://bootstrap.pypa.io/get-pip.py && \
python3 get-pip.py && \
python3 -m pip install --root-user-action=ignore atheris pyinstaller
RUN git clone https://github.com/numpy/numpy && cd numpy && git submodule update --init
WORKDIR $SRC
COPY *.py build.sh $SRC/