@@ -149,7 +149,7 @@ Users can manually expose these ports if needed:
149149The image is automatically built via GitHub Actions workflow when:
150150- Pull requests are opened (validation only, no push)
151151- Changes are pushed to ` main ` or ` master ` branch
152- - Changes are detected in ` sandbox /` directory
152+ - Changes are detected in ` runtime /` directory
153153- Manually triggered via workflow dispatch
154154
155155** Workflow File** : ` .github/workflows/build-runtime.yml `
@@ -169,14 +169,14 @@ The image is automatically built via GitHub Actions workflow when:
169169### Local Build (Single Architecture)
170170
171171``` bash
172- cd sandbox
172+ cd runtime
173173docker build -t fullstack-web-runtime:local .
174174```
175175
176176### Local Multi-Architecture Build
177177
178178``` bash
179- cd sandbox
179+ cd runtime
180180docker buildx build \
181181 --platform linux/amd64,linux/arm64 \
182182 -t fullstack-web-runtime:local \
@@ -210,7 +210,7 @@ Set these in repository settings (Settings → Secrets and variables → Actions
210210### Directory Structure
211211
212212```
213- sandbox /
213+ runtime /
214214├── Dockerfile # Multi-stage Docker build
215215├── entrypoint.sh # Container startup script
216216├── .bashrc # Shell configuration with custom prompt
@@ -228,7 +228,7 @@ sandbox/
228228
229229``` bash
230230# Build locally
231- cd sandbox
231+ cd runtime
232232docker build -t test-runtime .
233233
234234# Test web terminal
@@ -408,7 +408,7 @@ We welcome contributions! Please follow these steps:
408408
4094091 . Fork the repository
4104102 . Create a feature branch (` git checkout -b feature/my-feature ` )
411- 3 . Make your changes to ` sandbox /` directory
411+ 3 . Make your changes to ` runtime /` directory
4124124 . Test locally with ` docker build `
4134135 . Commit your changes (` git commit -m 'feat: Add new feature' ` )
4144146 . Push to your fork (` git push origin feature/my-feature ` )
0 commit comments