mirror of
https://github.com/goharbor/harbor.git
synced 2025-02-15 03:11:50 +01:00
8 lines
289 B
Docker
8 lines
289 B
Docker
FROM golang:1.11.2
|
|
|
|
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
|