mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 00:29:50 +01:00
dbe6ebceec
Bump up the golang for compiling the binaries to 1.12.12 This commit also includes some minor changes to Makefile to fix issue in building the binary files. Signed-off-by: Daniel Jiang <jiangd@vmware.com>
8 lines
290 B
Docker
8 lines
290 B
Docker
FROM golang:1.12.12
|
|
|
|
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
|