mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-22 18:25:56 +01:00
de281220b5
* update golang version to golang v1.23.2 Signed-off-by: wang yan <wangyan@vmware.com>
8 lines
246 B
Docker
8 lines
246 B
Docker
FROM golang:1.23.2
|
|
|
|
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
|