-
Notifications
You must be signed in to change notification settings - Fork 53
[SPARK-48664] Add Apache Spark 4.0.0-preview1 Dockerfiles #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,6 +46,8 @@ RUN set -ex; \ | |
| wget -nv -O spark.tgz "$SPARK_TGZ_URL"; \ | ||
| wget -nv -O spark.tgz.asc "$SPARK_TGZ_ASC_URL"; \ | ||
| export GNUPGHOME="$(mktemp -d)"; \ | ||
| wget -nv -O KEYS https://downloads.apache.org/spark/KEYS; \ | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @yaooqinn do you know why other Spark versions' dockerfiles are fine without this change?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure, (it might because your key is new and theirs are cached)
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See related: #54 (comment) we need upload the key to https://keys.openpgp.org/upload |
||
| gpg --import KEYS; \ | ||
| gpg --batch --keyserver hkps://keys.openpgp.org --recv-key "$GPG_KEY" || \ | ||
| gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys "$GPG_KEY"; \ | ||
| gpg --batch --verify spark.tgz.asc spark.tgz; \ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.