mirror of
https://github.com/goharbor/harbor
synced 2025-04-12 18:23:43 +00:00
8 lines
246 B
Docker
8 lines
246 B
Docker
FROM golang:1.23.7
|
|
|
|
ADD . /go/src/github.com/goharbor/harbor-scanner-trivy/
|
|
WORKDIR /go/src/github.com/goharbor/harbor-scanner-trivy/
|
|
|
|
RUN export GOOS=linux GO111MODULE=on CGO_ENABLED=0 && \
|
|
go build -o scanner-trivy cmd/scanner-trivy/main.go
|