Merge pull request #32 from szis-ai/main

Fix [BUG]ERROR: failed to build: failed to solve: dockerfile parse error on line 54: unknown instruction: /root/.bun/bin/bun
This commit is contained in:
Xinlu Lai 2025-08-24 04:46:48 +08:00 committed by GitHub
commit 90a5d2db64
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -150,7 +150,7 @@ git clone https://github.com/shareAI-lab/Kode.git
cd Kode
# Build the image locally
docker build --no-cache -t Kode .
docker build --no-cache -t kode .
# Run in your project directory
cd your-project
@ -159,7 +159,7 @@ docker run -it --rm \
-v ~/.kode:/root/.kode \
-v ~/.kode.json:/root/.kode.json \
-w /workspace \
Kode
kode
```
#### Docker Configuration Details

View File

@ -58,7 +58,7 @@ git clone https://github.com/shareAI-lab/Kode.git
cd Kode
# 本地构建镜像
docker build --no-cache -t Kode .
docker build --no-cache -t kode .
# 在你的项目目录中运行
cd your-project
@ -67,7 +67,7 @@ docker run -it --rm \
-v ~/.kode:/root/.kode \
-v ~/.kode.json:/root/.kode.json \
-w /workspace \
Kode
kode
```
#### Docker 配置详情