mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 08:09:59 +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>
10 lines
220 B
Docker
10 lines
220 B
Docker
FROM golang:1.15.6
|
|
|
|
ENV DISTRIBUTION_DIR /go/src/github.com/docker/distribution
|
|
ENV BUILDTAGS include_oss include_gcs
|
|
|
|
WORKDIR $DISTRIBUTION_DIR
|
|
COPY . $DISTRIBUTION_DIR
|
|
|
|
RUN CGO_ENABLED=0 make PREFIX=/go clean binaries
|