Commit 8e74fe1
fix: correct COPY paths in production client Dockerfile (#180)
The production Dockerfile was using incorrect paths for COPY commands.
Build context is ./lablink-client-base but files are in subdirectory
lablink-client-base-image/, so paths must be relative to context.
Fixes:
- COPY install_miniforge.sh → COPY lablink-client-base-image/install_miniforge.sh
- COPY install_nvm.sh → COPY lablink-client-base-image/install_nvm.sh
- COPY start.sh → COPY lablink-client-base-image/start.sh
Error was:
ERROR: "/start.sh": not found
ERROR: "/install_miniforge.sh": not found
This only affected main branch builds (production Dockerfile).
Dev Dockerfile already had correct paths.
Verified allocator Dockerfile paths are also correct (context is repo root).
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <[email protected]>1 parent 27c9fd2 commit 8e74fe1
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
123 | 123 | | |
124 | 124 | | |
125 | 125 | | |
126 | | - | |
| 126 | + | |
127 | 127 | | |
128 | 128 | | |
129 | 129 | | |
| |||
141 | 141 | | |
142 | 142 | | |
143 | 143 | | |
144 | | - | |
| 144 | + | |
145 | 145 | | |
146 | 146 | | |
147 | 147 | | |
| |||
0 commit comments