Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
becb1e0
Initial plan
Copilot Aug 30, 2025
373c7f7
Initial plan
Copilot Aug 30, 2025
a2c07f1
Implement comprehensive devcontainer security hardening
Copilot Aug 30, 2025
64404d9
Add devcontainer port visibility automation and security hardening do…
Copilot Aug 30, 2025
38433d4
Fix bullet point formatting in introduction-to-dev-containers.md
Copilot Aug 30, 2025
921f8d9
Merge pull request #3 from 02ez/copilot/fix-4f8f2aa5-4a54-438f-89e7-b…
02ez Aug 30, 2025
108d1a2
Docs: tighten devcontainer JSON + stable Codespaces port setup
02ez Aug 30, 2025
5b0a086
Use canonical `gh codespace ports visibility`
02ez Aug 30, 2025
a8e8daa
Docs: canonicalize `gh codespace ports visibility` in Python setup
02ez Aug 30, 2025
2fd1fbc
Docs: standardize on `gh codespace ports visibility` and unify examples
02ez Aug 30, 2025
1e1c079
chore(ci): add PR summary using $GITHUB_STEP_SUMMARY
02ez Aug 30, 2025
81b63dc
ci(pr-summary): robust file listing via git diff-tree + precise docs …
02ez Aug 30, 2025
5aff31b
ci(pr-summary): add PR summary via $GITHUB_STEP_SUMMARY (robust diff-…
02ez Aug 30, 2025
f7e8e86
Update pr-summary.yml with new content
02ez Aug 30, 2025
8045d10
Merge pull request #1 from 02ez/copilot/fix-53426d94-92c8-4134-9b70-d…
02ez Aug 30, 2025
2900603
fix: content/actions/reference/workflows-and-actions/dockerfile-suppo…
snyk-bot Sep 1, 2025
57290a5
Merge pull request #10 from 02ez/snyk-fix-dc594754af378df296533088493…
02ez Sep 1, 2025
caad731
fix: Dockerfile.openapi_decorator to reduce vulnerabilities
snyk-bot Sep 1, 2025
4bb0bdb
Merge pull request #11 from 02ez/snyk-fix-dcb79ae3a247dad781581e023a2…
02ez Sep 1, 2025
fafce21
fix: package.json & package-lock.json to reduce vulnerabilities
snyk-bot Sep 1, 2025
863c33b
Merge pull request #12 from 02ez/snyk-fix-ab9a4762951c40794c26c21888e…
02ez Sep 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Docs: tighten devcontainer JSON + stable Codespaces port setup
- Convert examples to strict JSON (no comments/trailing commas).
- Recommend forwardPorts: [4000] and `gh codespace ports visibility 4000:public -c "$CODESPACE_NAME"`.
- Add quick validation: `jq -e .` and `npx @devcontainers/cli validate`.
- Scope is docs only; happy to adjust to house style.

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
  • Loading branch information
02ez and Copilot authored Aug 30, 2025
commit 108d1a2f4a31a79edabf21c27b09344b624aabe9
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ The following examples demonstrate different security approaches for common deve
"ghcr.io/devcontainers/features/github-cli:1": {}
},

"postAttachCommand": "gh cs ports visibility 5000:org 8000:org -c \"$CODESPACE_NAME\""
"postAttachCommand": "gh codespace ports visibility 5000:org 8000:org -c \"$CODESPACE_NAME\""
}
```

Expand Down
Loading