Commit bfaff7a
fix: simplify dockerfile by moving directory creation to entrypoint
Removes code-server and vscode-server directory creation from Dockerfile
to avoid permission issues during multi-platform builds.
These directories are now only created in entrypoint.sh which:
- Runs as root
- Creates directories with correct ownership
- Runs on every container start
This approach is more reliable as entrypoint.sh can use mkdir -p and
chown without permission conflicts that occur during image build.
Fixes multi-platform build failures on arm64 architecture.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>1 parent 6971cb0 commit bfaff7a
1 file changed
Lines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
177 | 177 | | |
178 | 178 | | |
179 | 179 | | |
180 | | - | |
181 | | - | |
182 | | - | |
183 | | - | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
184 | 184 | | |
185 | 185 | | |
186 | 186 | | |
| |||
0 commit comments