From 417bbf566e3ffd962e09a50903282233b3676b69 Mon Sep 17 00:00:00 2001 From: David Lakin Date: Tue, 4 Jun 2024 10:14:05 -0400 Subject: [PATCH] [dask] Replace Python 3.9 Workaround With Base Builder Python 3.10 Replaces the ad-hoc workaround to install Python 3.9, with the upgraded Python 3.10 version provided by the base-builder and image. --- projects/dask/Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/projects/dask/Dockerfile b/projects/dask/Dockerfile index 7ec3b169f135..1a6310b2d71e 100644 --- a/projects/dask/Dockerfile +++ b/projects/dask/Dockerfile @@ -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