Commit a346975
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 <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
(cherry picked from commit 5acd8e6)
Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 1a9221a commit a346975
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
63 | | - | |
| 63 | + | |
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
| |||
0 commit comments