-
Notifications
You must be signed in to change notification settings - Fork 2
perf: Enhance Docker setup for dashboard with improved config bindings #151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
eddd405
feat(docker): enhance local development setup with Docker Compose sup…
yacosta738 3792cfd
feat: update config bindings to use value properties for improved rea…
yacosta738 53e9342
feat(docker): add dashboard Docker image build and smoke check functi…
yacosta738 bfbd822
feat(docker): update Docker actions and improve post-install script e…
yacosta738 1c7923b
refactor: fix qa code
yacosta738 ffcb725
Merge branch 'main' into dashboard-docker-example
yacosta738 1b2268c
Merge remote-tracking branch 'origin/dashboard-docker-example' into d…
yacosta738 8b4ee15
chore(deps): refresh web lockfile after CI checks
yacosta738 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | ||
| # This workflow uses third-party actions that are governed by their own terms. | ||
| name: Snyk Security | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| - minor | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| - minor | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| snyk: | ||
| if: ${{ secrets.SNYK_TOKEN != '' }} | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| security-events: write | ||
| env: | ||
| SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
|
|
||
| steps: | ||
| - name: ✈ Checkout repository | ||
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | ||
|
|
||
| - name: 📦 Setup Node | ||
| uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 | ||
| with: | ||
| node-version: "24" | ||
|
|
||
| - name: 🔐 Setup Snyk CLI | ||
| uses: snyk/actions/setup@806182742461562b67788a64410098c9d9b96adb | ||
|
|
||
| - name: 🔍 Snyk Code test (SARIF) | ||
| continue-on-error: true | ||
| run: snyk code test --sarif > snyk-code.sarif | ||
|
|
||
| - name: 📤 Upload Snyk Code SARIF to GitHub | ||
| uses: github/codeql-action/upload-sarif@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10 | ||
| with: | ||
| sarif_file: snyk-code.sarif | ||
|
|
||
| - name: 📚 Snyk Open Source test | ||
| continue-on-error: true | ||
| run: snyk test --all-projects | ||
|
|
||
| - name: 📡 Snyk Open Source monitor | ||
| if: github.event_name != 'pull_request' | ||
| continue-on-error: true | ||
| run: snyk monitor --all-projects | ||
|
|
||
| - name: 🏗️ Build runtime Docker image for scan | ||
| run: docker build -t corvus-runtime-snyk:scan -f clients/agent-runtime/Dockerfile . | ||
|
|
||
| - name: 🐳 Snyk Container test | ||
| continue-on-error: true | ||
| run: snyk container test corvus-runtime-snyk:scan --file=clients/agent-runtime/Dockerfile | ||
|
|
||
| - name: 🐳 Snyk Container monitor | ||
| if: github.event_name != 'pull_request' | ||
| continue-on-error: true | ||
| run: snyk container monitor corvus-runtime-snyk:scan --file=clients/agent-runtime/Dockerfile | ||
|
|
||
| - name: 🧱 Snyk IaC test | ||
| continue-on-error: true | ||
| run: snyk iac test --report |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.