Skip to content
Open
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
11 changes: 8 additions & 3 deletions projects/pyvex/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,18 @@

FROM gcr.io/oss-fuzz-base/base-builder-python
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y python3.9 python3.9-dev && \
ln --force -s /usr/bin/python3.9 /usr/local/bin/python3 && \
DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common && \
add-apt-repository ppa:deadsnakes/ppa && \
apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y python3.10 python3.10-dev python3-distutils && \
ln --force -s /usr/bin/python3.10 /usr/local/bin/python3 && \
apt-get install -y python3-pip && \
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10 && \
python3 -m pip install --upgrade setuptools && \
python3 -m pip install cython "atheris>=2.1.1" "pyinstaller>=5.0.1" "coverage>=6.3.2" && \
rm -rf /var/lib/apt/lists/*
RUN python3 -m pip install --upgrade pip
RUN rm -rf /usr/local/bin/python3 && ln -s /usr/bin/python3.9 /usr/local/bin/python3
RUN rm -rf /usr/local/bin/python3 && ln -s /usr/bin/python3.10 /usr/local/bin/python3
RUN git clone --recursive https://github.com/angr/archinfo.git archinfo
RUN git clone --recursive https://github.com/angr/pyvex.git pyvex
#RUN git clone --recursive https://github.com/capuanob/pyvex.git pyvex
Expand Down
Loading