-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore: Update Docker images to latest releases #140
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -34,7 +34,7 @@ ARG TZ=Asia/Singapore | |
| # ---------------------------------------------------------------------------------------------------------------------- | ||
| # BUILDER STAGE | ||
| # ---------------------------------------------------------------------------------------------------------------------- | ||
| FROM golang:1.25.1-alpine@sha256:b6ed3fd0452c0e9bcdef5597f29cc1418f61672e9d3a2f55bf02e7222c014abd AS builder | ||
| FROM golang:1.25.3-alpine3.22@sha256:c3dc5d5e8cf34ccb2172fb8d1aa399aa13cd8b60d27bba891d18e3b436a0c5f6 AS builder | ||
|
|
||
| # Bring in the build args needed in this stage. | ||
| ARG APP_DIR | ||
|
|
@@ -82,7 +82,7 @@ RUN go build \ | |
| # ---------------------------------------------------------------------------------------------------------------------- | ||
| # FINAL STAGE | ||
| # ---------------------------------------------------------------------------------------------------------------------- | ||
| FROM alpine:3.22@sha256:4bcff63911fcb4448bd4fdacec207030997caf25e9bea4045fa6c8c44de311d1 | ||
| FROM alpine:3.22@sha256:85f2b723e106c34644cd5851d7e81ee87da98ac54672b29947c052a45d31dc2f | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chainVerify Alpine base image digest. The Alpine base image digest has been updated. Please confirm that this digest corresponds to the correct 🏁 Script executed: #!/bin/bash
# Description: Verify the Alpine 3.22 image digest and check for security advisories
# Fetch the latest digest for alpine:3.22 from Docker Hub
echo "Fetching digest for alpine:3.22..."
curl -s "https://hub.docker.com/v2/repositories/library/alpine/tags/3.22" | jq -r '.digest'
# Check for security advisories
echo -e "\nChecking for security advisories..."
gh api graphql -f query='
{
securityVulnerabilities(first: 5, ecosystem: ALPINE, package: "alpine") {
nodes {
advisory {
summary
severity
publishedAt
}
vulnerableVersionRange
firstPatchedVersion {
identifier
}
}
}
}'Length of output: 623 Update Alpine base image digest and scan for vulnerabilities
🤖 Prompt for AI Agents |
||
|
|
||
| # Bring in the runtime args. | ||
| ARG APP_USER | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.