Skip to content

Commit

Permalink
[dask] Replace Python 3.9 Workaround With Base Builder Python 3.10
Browse files Browse the repository at this point in the history
Replaces the ad-hoc workaround to install Python 3.9, with the
upgraded Python 3.10 version provided by the base-builder and
image.
  • Loading branch information
DaveLak committed Jun 4, 2024
1 parent eed2bea commit 417bbf5
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions projects/dask/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@

FROM gcr.io/oss-fuzz-base/base-builder-python
RUN apt-get update && apt-get install -y pkg-config
# Ensure we work from right python version
RUN apt-get install -y python3.9 python3.9-dev && \
ln --force -s /usr/bin/python3.9 /usr/local/bin/python3 && \
apt-get install -y python3-pip && \
python3 -m pip install cython "atheris>=2.1.1" "pyinstaller==5.0.1" "coverage==6.3.2"
RUN python3 -m pip install cython 'pyinstaller==6.7.0'
RUN git clone https://github.com/dask/dask
COPY build.sh fuzz_fuse.py $SRC/
WORKDIR $SRC/dask
Expand Down

0 comments on commit 417bbf5

Please sign in to comment.