acelyc111 commented on code in PR #2154: URL: https://github.com/apache/incubator-pegasus/pull/2154#discussion_r1860936193
########## docker/pegasus-build-env/ubuntu1804/Dockerfile: ########## @@ -61,11 +61,11 @@ RUN add-apt-repository ppa:git-core/ppa -y; \ RUN pip3 install --no-cache-dir --upgrade pip && pip3 install --no-cache-dir cmake -RUN wget --progress=dot:giga https://github.com/apache/thrift/archive/refs/tags/0.11.0.tar.gz -P /opt/thrift && \ - cd /opt/thrift && tar xzf 0.11.0.tar.gz && cd thrift-0.11.0 && ./bootstrap.sh && \ +RUN wget --progress=dot:giga https://archive.apache.org/dist/thrift/0.11.0/thrift-0.11.0.tar.gz -P /opt/thrift && \ + cd /opt/thrift && tar xzf thrift-0.11.0.tar.gz && cd thrift-0.11.0 && ./bootstrap.sh && \ ./configure --enable-libs=no && \ make -j$(($(nproc)/2+1)) && make install && cd - && \ - rm -rf thrift-0.11.0 0.11.0.tar.gz + rm -rf thrift-0.11.0 thrift-0.11.0.tar.gz Review Comment: ```suggestion rm -rf thrift-0.11.0 thrift-0.11.0.tar.gz ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
