mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-29 21:54:13 +01:00
7b664f64f1
Signed-off-by: wang yan <wangyan@vmware.com>
8 lines
289 B
Docker
8 lines
289 B
Docker
FROM golang:1.13.4
|
|
|
|
ADD . /go/src/github.com/coreos/clair/
|
|
WORKDIR /go/src/github.com/coreos/clair/
|
|
|
|
RUN export CLAIR_VERSION=$(git describe --tag --always --dirty) && \
|
|
go build -ldflags "-X github.com/coreos/clair/pkg/version.Version=$CLAIR_VERSION" github.com/coreos/clair/cmd/clair
|