mirror of
https://github.com/goharbor/harbor
synced 2025-04-14 09:26:23 +00:00

Signed-off-by: yminer <yminer@vmmware.com> update CONTRIBUTING.md 2.4 golang version to 1.17.7 Signed-off-by: yminer <yminer@vmmware.com> Co-authored-by: yminer <yminer@vmmware.com>
11 lines
241 B
Docker
11 lines
241 B
Docker
FROM golang:1.17.7
|
|
|
|
ENV DISTRIBUTION_DIR /go/src/github.com/docker/distribution
|
|
ENV BUILDTAGS include_oss include_gcs
|
|
ENV GO111MODULE auto
|
|
|
|
WORKDIR $DISTRIBUTION_DIR
|
|
COPY . $DISTRIBUTION_DIR
|
|
|
|
RUN CGO_ENABLED=0 make PREFIX=/go clean binaries
|