Commit 617bc74
committed
fix(docker): don't COPY the empty include/ dir in simplepool image
The Dockerfile.simplepool build stage did 'COPY include/ ./include/', but
include/ is an empty directory. Git can't track empty dirs, so it's absent in
a fresh checkout (CI), and buildx failed with '"/include": not found'. No
header lives in include/ (all are under src/), and the Makefile's -Iinclude
search path tolerates the directory's absence, so the copy is simply dropped.1 parent 96893ea commit 617bc74
1 file changed
Lines changed: 4 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
18 | 21 | | |
19 | 22 | | |
20 | 23 | | |
| |||
0 commit comments