diff --git a/docker/310.Dockerfile b/docker/310.Dockerfile index dc1ac353..c180a5ab 100644 --- a/docker/310.Dockerfile +++ b/docker/310.Dockerfile @@ -59,7 +59,8 @@ RUN set -x \ && rm -rf /root/.pnpm-store \ && rm -rf /root/.local/share/pnpm/store \ && rm -rf /root/.cache \ - && ulimit -c 0 + && ulimit -c 0 \ + && pip3 install requests ARG SOURCE_COMMIT RUN git clone --depth=1 -b ${QL_BRANCH} ${QL_URL} ${QL_DIR} \ diff --git a/docker/Dockerfile b/docker/Dockerfile index a4318d18..3d719e37 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -59,7 +59,8 @@ RUN set -x \ && rm -rf /root/.pnpm-store \ && rm -rf /root/.local/share/pnpm/store \ && rm -rf /root/.cache \ - && ulimit -c 0 + && ulimit -c 0 \ + && pip3 install requests ARG SOURCE_COMMIT RUN git clone --depth=1 -b ${QL_BRANCH} ${QL_URL} ${QL_DIR} \