[SPARK-47206] Add official image Dockerfile for Apache Spark 3.5.1

### What changes were proposed in this pull request?
Add Apache Spark 3.5.1 Dockerfiles.

- Add 3.5.1 GPG key
- Add .github/workflows/build_3.5.1.yaml
- `./add-dockerfiles.sh 3.5.1` to generate dockerfiles
- Add version and tag info

### Why are the changes needed?
Apache Spark 3.5.1 released

### Does this PR introduce _any_ user-facing change?
Docker image will be published.

### How was this patch tested?
Add workflow and CI passed

Closes #59 from Yikun/3.5.1.

Authored-by: Yikun Jiang <yikunkero@gmail.com>
Signed-off-by: Yikun Jiang <yikunkero@gmail.com>
15 files changed
tree: cec1e612a6f1c1c96320738bc96fea983865165c
  1. .github/
  2. 3.3.0/
  3. 3.3.1/
  4. 3.3.2/
  5. 3.3.3/
  6. 3.4.0/
  7. 3.4.1/
  8. 3.4.2/
  9. 3.5.0/
  10. 3.5.1/
  11. testing/
  12. tools/
  13. .asf.yaml
  14. add-dockerfiles.sh
  15. awesome-spark-docker.md
  16. CONTRIBUTING.md
  17. Dockerfile.template
  18. entrypoint.sh.template
  19. LICENSE
  20. merge_spark_docker_pr.py
  21. NOTICE
  22. OVERVIEW.md
  23. r-python.template
  24. README.md
  25. versions.json
README.md

Apache Spark Official Dockerfiles

What is Apache Spark?

Spark is a unified analytics engine for large-scale data processing. It provides high-level APIs in Scala, Java, Python, and R, and an optimized engine that supports general computation graphs for data analysis. It also supports a rich set of higher-level tools including Spark SQL for SQL and DataFrames, pandas API on Spark for pandas workloads, MLlib for machine learning, GraphX for graph processing, and Structured Streaming for stream processing.

https://spark.apache.org/

About this repository

This repository contains the Dockerfiles used to build the Apache Spark Docker Image.

See more in SPARK-40513: SPIP: Support Docker Official Image for Spark.