mirror of
https://github.com/goharbor/harbor.git
synced 2024-10-31 23:59:32 +01:00
c6814f2bcc
1, deprecate travis, and use the gitaction for instread. 2, upgrade golang version to v1.15.6 Signed-off-by: Wang Yan <wangyan@vmware.com>
8 lines
276 B
Docker
8 lines
276 B
Docker
FROM golang:1.15.6
|
|
|
|
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
|