mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 18:50:09 +01:00
10 lines
276 B
Docker
10 lines
276 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
|