fix: update Dockerfile to set correct installation path and permissions for mise

This commit is contained in:
2026-03-06 00:56:17 +07:00
parent d8f7c8fc19
commit 7f2c4ab50d
2 changed files with 4 additions and 4 deletions

View File

@@ -42,10 +42,10 @@ services:
- dev-tools:/tools:ro
```
Add `/tools/shims` to `PATH` in your container's Dockerfile:
Add `/tools/shims` and `/tools/bin` to `PATH` in your container's Dockerfile:
```dockerfile
ENV PATH="/tools/shims:${PATH}"
ENV PATH="/tools/shims:/tools/bin:${PATH}"
```
All dev-tools are now available in your container.