michaelsembwever commented on code in PR #117: URL: https://github.com/apache/cassandra-builds/pull/117#discussion_r2138707237
########## docker/testing/ubuntu2204_java_driver_testing.docker: ########## @@ -31,6 +31,11 @@ USER docker WORKDIR /home/docker +# install newer maven, 3.8.8 is latest that supports Java 8 +RUN curl -sL https://dlcdn.apache.org/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz -o apache-maven-3.8.8-bin.tar.gz && \ + tar xzvf apache-maven-3.8.8-bin.tar.gz +ENV PATH="/home/docker/apache-maven-3.8.8/bin:$PATH" Review Comment: it came up recently that we should be checksumming anything we download. that wasn't specifically with docker images in mind, but i think we can still do that. we did it recently here: https://github.com/apache/cassandra-builds/commit/bf886bbdb0026858c59080a397f1adc9e930ac05 (there's four SHAs there because we arch and os download possibilities) -- 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]

