mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 11:41:54 +01:00
bd7940217a
The vesrion contains two security bug fix - CVE-2020-0601, CVE-2020-7919 More details, see the golang milestone: https://github.com/golang/go/issues?q=milestone%3AGo1.13.8+label%3ACherryPickApproved Signed-off-by: wang yan <wangyan@vmware.com>
8 lines
280 B
Docker
8 lines
280 B
Docker
FROM golang:1.13.8
|
|
|
|
ADD . /go/src/github.com/goharbor/harbor-scanner-clair/
|
|
WORKDIR /go/src/github.com/goharbor/harbor-scanner-clair/
|
|
|
|
RUN export GOFLAGS=-mod=vendor GOOS=linux GO111MODULE=on CGO_ENABLED=0 && \
|
|
go build -o harbor-scanner-clair cmd/harbor-scanner-clair/main.go
|