mirror of
https://github.com/goharbor/harbor
synced 2025-04-25 14:37:38 +00:00

bump golang 1.21.5 update golangci-lint && fix revive error fix white space lint Signed-off-by: yminer <yminer@vmware.com>
8 lines
254 B
Docker
8 lines
254 B
Docker
FROM golang:1.21.5
|
|
|
|
ADD . /go/src/github.com/aquasecurity/harbor-scanner-trivy/
|
|
WORKDIR /go/src/github.com/aquasecurity/harbor-scanner-trivy/
|
|
|
|
RUN export GOOS=linux GO111MODULE=on CGO_ENABLED=0 && \
|
|
go build -o scanner-trivy cmd/scanner-trivy/main.go
|