jiayuasu opened a new issue, #3237: URL: https://github.com/apache/sedona/issues/3237
The docker image build downloads Spark from a hardcoded third-party mirror (mirror.lyrahosting.com) in docker/install-spark.sh. That mirror's TLS certificate has expired, so every docker-build CI run currently fails with: ``` curl: (60) SSL certificate problem: certificate has expired ``` Example failure: https://github.com/apache/sedona/actions/runs/30980719770 Proposed fix: download from the official ASF CDN (dlcdn.apache.org) and fall back to archive.apache.org (dlcdn only hosts current releases; the archive hosts every version). Add --fail to curl so HTTP errors trigger the fallback instead of saving an error page. Checksum verification against archive.apache.org stays unchanged. -- 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]
