-
Notifications
You must be signed in to change notification settings - Fork 0
try building docker image w/ Github URL #37
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -54,7 +54,7 @@ RUN set -e && \ | |
| done | ||
|
|
||
| # Copy configuration last (changes more frequently than JARs) | ||
| COPY --chown=spark:spark spark-defaults.conf ${SPARK_HOME}/conf/ | ||
| COPY --chown=spark:spark dev/spark/spark-defaults.conf ${SPARK_HOME}/conf/ | ||
|
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. This path change is coupled with the modification in |
||
|
|
||
| USER spark | ||
| WORKDIR ${SPARK_HOME} | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Building the Docker image from a personal GitHub repository URL introduces a significant risk to the project's stability and reproducibility. This configuration makes the build process dependent on an external fork (
kevinjqliu/iceberg-python) and a specific branch that is outside the control of this project's maintainers. If the repository is removed, made private, or the branch is altered, the build will fail. It's strongly recommended to use a local build context to ensure that the build relies only on the code within this repository.