Skip to content
This repository was archived by the owner on Feb 6, 2026. It is now read-only.

Commit d605d7d

Browse files
committed
Fix Docker image
1 parent b53b4ce commit d605d7d

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
FROM golang:1.10-alpine as builder
2-
ARG SRC_DIR=/go/src/github.com/qubitdigital/iris
2+
ARG SRC_DIR=/go/src/github.com/QubitProducts/iris
33
RUN apk --no-cache add --update make
44
ADD . $SRC_DIR
55
WORKDIR $SRC_DIR
66
RUN make container
77

88
FROM scratch
9-
COPY --from=builder /go/src/github.com/qubitdigital/iris/iris /iris
9+
COPY --from=builder /go/src/github.com/QubitProducts/iris/iris /iris
1010
ENV GRPC_GO_LOG_SEVERITY_LEVEL WARNING
1111
ENTRYPOINT ["/iris"]
1212

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ LOCAL_CONF_DIR:=$(shell pwd)/support/local-conf
77

88
.PHONY: gen-protos test container docker publish launch_iris launch_envoy clean
99

10-
1110
$(DATA_PLANE_API_LOC):
1211
git clone $(DATA_PLANE_API_REPO) $(DATA_PLANE_API_LOC)
1312

0 commit comments

Comments
 (0)