mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-10 20:50:29 +01:00
8 lines
269 B
Docker
8 lines
269 B
Docker
|
FROM golang:1.12.5
|
||
|
|
||
|
ADD . /go/src/github.com/goharbor/harbor-scanner-clair/
|
||
|
WORKDIR /go/src/github.com/goharbor/harbor-scanner-clair/
|
||
|
|
||
|
RUN export GOOS=linux GO111MODULE=on CGO_ENABLED=0 && \
|
||
|
go build github.com/goharbor/harbor-scanner-clair/cmd/harbor-scanner-clair
|