mirror of
https://github.com/goharbor/harbor
synced 2025-04-13 20:34:58 +00:00
10 lines
220 B
Docker
10 lines
220 B
Docker
FROM golang:1.14.5
|
|
|
|
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
|