Skip to content

Commit

Permalink
Fix Docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
charith-qubit committed May 17, 2018
1 parent b53b4ce commit d605d7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]

Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit d605d7d

Please sign in to comment.