diff --git a/Dockerfile b/Dockerfile index 4c8f3dd..079e33e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ FROM golang:1.10-alpine as builder -ARG SRC_DIR=/go/src/github.com/qubitdigital/iris +ARG SRC_DIR=/go/src/github.com/QubitProducts/iris RUN apk --no-cache add --update make ADD . $SRC_DIR WORKDIR $SRC_DIR RUN make container FROM scratch -COPY --from=builder /go/src/github.com/qubitdigital/iris/iris /iris +COPY --from=builder /go/src/github.com/QubitProducts/iris/iris /iris ENV GRPC_GO_LOG_SEVERITY_LEVEL WARNING ENTRYPOINT ["/iris"] diff --git a/Makefile b/Makefile index 7a13d16..9c3b18e 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,6 @@ LOCAL_CONF_DIR:=$(shell pwd)/support/local-conf .PHONY: gen-protos test container docker publish launch_iris launch_envoy clean - $(DATA_PLANE_API_LOC): git clone $(DATA_PLANE_API_REPO) $(DATA_PLANE_API_LOC)