mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-09 20:21:53 +01:00
bad8f026fc
Signed-off-by: wang yan <wangyan@vmware.com>
8 lines
276 B
Docker
8 lines
276 B
Docker
FROM golang:1.14.5
|
|
|
|
ADD . /go/src/github.com/quay/clair/
|
|
WORKDIR /go/src/github.com/quay/clair/
|
|
|
|
RUN export CLAIR_VERSION=$(git describe --tag --always --dirty) GO111MODULE=on && \
|
|
go build -ldflags "-X github.com/quay/clair/pkg/version.Version=$CLAIR_VERSION" ./cmd/clair
|