mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 00:29:50 +01:00
dbe6ebceec
Bump up the golang for compiling the binaries to 1.12.12 This commit also includes some minor changes to Makefile to fix issue in building the binary files. Signed-off-by: Daniel Jiang <jiangd@vmware.com>
10 lines
221 B
Docker
10 lines
221 B
Docker
FROM golang:1.12.12
|
|
|
|
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
|