mirror of
https://github.com/goharbor/harbor.git
synced 2025-02-21 14:21:36 +01:00
bump golang to 1.21.3 update 1.21 CI update ut mock anything Signed-off-by: yminer <yminer@vmware.com>
11 lines
241 B
Docker
11 lines
241 B
Docker
FROM golang:1.21.3
|
|
|
|
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
|