Skip to content
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

mtls implemented #360

Closed
wants to merge 4 commits into from

docker base image change

9754266
Select commit
Loading
Failed to load commit list.
Closed

mtls implemented #360

docker base image change
9754266
Select commit
Loading
Failed to load commit list.
DryRunSecurity / Sensitive Files Analyzer succeeded May 8, 2024 in 1s

DryRun Security

Details

Sensitive Files Analyzer Findings: 1 detected

⚠️ Potential Sensitive File dockerfiles/agent/container/Dockerfile (click for details)
Type Potential Sensitive File
Description Dockerfile changes can introduce security issues such as insecure base images, insecure file permissions, untrusted packages, etc.
Filename dockerfiles/agent/container/Dockerfile
CodeLink
FROM cgr.dev/chainguard/wolfi-base AS builder
RUN apk update && apk add go-1.21
WORKDIR /
COPY ./ ./
RUN CGO_ENABLED=0 go build -o ./build/agent agent/container/main.go
FROM cgr.dev/chainguard/static:latest
COPY --from=builder ./build/agent agent
USER 65532:65532