mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-27 11:07:46 +01:00
5d59d6fab8
Signed-off-by: Daniel Jiang <jiangd@vmware.com>
11 lines
277 B
Docker
11 lines
277 B
Docker
FROM golang:1.7.3
|
|
|
|
ENV DISTRIBUTION_DIR /go/src/github.com/docker/distribution
|
|
ENV DOCKER_BUILDTAGS include_oss include_gcs
|
|
|
|
WORKDIR $DISTRIBUTION_DIR
|
|
COPY . $DISTRIBUTION_DIR
|
|
COPY cmd/registry/config-dev.yml /etc/docker/registry/config.yml
|
|
|
|
RUN make PREFIX=/go clean binaries
|