From ff639ce427025e57290c48ca560b870aeb74ee4a Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Tue, 19 Sep 2023 01:55:29 +0100 Subject: [PATCH] libcst: fix build (#10985) Signed-off-by: David Korczynski --- projects/libcst/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/libcst/Dockerfile b/projects/libcst/Dockerfile index 55a46fce2..18b767741 100644 --- a/projects/libcst/Dockerfile +++ b/projects/libcst/Dockerfile @@ -15,12 +15,12 @@ FROM gcr.io/oss-fuzz-base/base-builder-python RUN git clone https://github.com/instagram/libcst libcst -RUN apt-get install build-essential libssl-dev libffi-dev python3-dev cargo -y +RUN apt-get install build-essential libssl-dev libffi-dev pkg-config python3-dev cargo -y RUN pip3 install --upgrade pip RUN curl https://sh.rustup.rs -sSf | sh -s -- -y ENV PATH="/root/.cargo/bin:${PATH}" RUN rustup install nightly -RUN rustup default nightly +RUN rustup default stable COPY *.sh *py $SRC/ WORKDIR $SRC/libcst