Commit 1549389
committed
fix(skills/py): adapter-coze Docker example port consistency
Review by @chatgpt-codex-connector flagged: docker run -p 9000:9000
published host port 9000, but ENV PORT=8000 and os.getenv("PORT","8000")
kept container listening on 8000. Host requests to 9000 would hit nothing.
First-pass sed only caught `port=8000` literal; missed:
- os.getenv("PORT", "8000") default value
- ENV PORT=8000 Dockerfile directive
- "port": 8000 config example
All 8000 occurrences in the Python skill dir now unified to 9000.1 parent bd2a617 commit 1549389
1 file changed
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
278 | 278 | | |
279 | 279 | | |
280 | 280 | | |
281 | | - | |
| 281 | + | |
282 | 282 | | |
283 | 283 | | |
284 | 284 | | |
| |||
307 | 307 | | |
308 | 308 | | |
309 | 309 | | |
310 | | - | |
| 310 | + | |
311 | 311 | | |
312 | 312 | | |
313 | 313 | | |
| |||
331 | 331 | | |
332 | 332 | | |
333 | 333 | | |
334 | | - | |
| 334 | + | |
335 | 335 | | |
336 | 336 | | |
337 | 337 | | |
| |||
0 commit comments