diff --git a/projects/configparser/Dockerfile b/projects/configparser/Dockerfile index 3928e4b6a7de..b328b69d6370 100644 --- a/projects/configparser/Dockerfile +++ b/projects/configparser/Dockerfile @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. FROM gcr.io/oss-fuzz-base/base-builder-python -RUN pip3 install --upgrade pip +RUN python -m pip install 'setuptools~=69.0' RUN git clone https://github.com/jaraco/configparser/ configparser COPY *.sh *py $SRC/ WORKDIR $SRC/configparser diff --git a/projects/configparser/build.sh b/projects/configparser/build.sh index dd11fafc62bb..50be783e9df1 100644 --- a/projects/configparser/build.sh +++ b/projects/configparser/build.sh @@ -14,7 +14,7 @@ # limitations under the License. # ################################################################################ -pip3 install . +python -m pip install . # Build fuzzers in $OUT. for fuzzer in $(find $SRC -name 'fuzz_*.py'); do compile_python_fuzzer $fuzzer