Commit 5acd8e6
committed
### What changes were proposed in this pull request?
This PR removes a trailing backslash (`\`) on an empty continuation line in `dev/spark-test-image/lint/Dockerfile` to fix the `NoEmptyContinuation` warning from Dockerfile linters. This is the only instance of this pattern.
- https://docs.docker.com/reference/build-checks/no-empty-continuation/
### Why are the changes needed?
The trailing `\` at line 69 is followed by an empty line, which triggers the `NoEmptyContinuation` warning. This is a no-op continuation that should be removed for clean lint results.
```
$ cd dev/spark-test-image/lint
$ docker build .
...
=> WARN: NoEmptyContinuation: Empty continuation line (line 72) 0.0s
...
```
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Verified by searching all Dockerfiles in the repository for the backslash-followed-by-empty-line pattern and confirming this was the only occurrence.
### Was this patch authored or co-authored using generative AI tooling?
Generated-by: Claude Code (claude-opus-4-6)
Closes #54856 from dongjoon-hyun/SPARK-56027.
Authored-by: Dongjoon Hyun <dongjoon@apache.org>
Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
1 parent b64383c commit 5acd8e6
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| |||
0 commit comments