Skip to content

Commit 4239e65

Browse files
authored
update tutorials dependency for version 1.5.0-rc.1 (#1496)
1 parent c410b70 commit 4239e65

File tree

26 files changed

+52
-0
lines changed

26 files changed

+52
-0
lines changed

tutorials/custom_evaluator/director/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o director .
2123

2224
CMD ["/app/director"]

tutorials/custom_evaluator/evaluator/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o evaluator .
2123

2224
CMD ["/app/evaluator"]

tutorials/custom_evaluator/frontend/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o frontend .
2123

2224
CMD ["/app/frontend"]

tutorials/custom_evaluator/matchfunction/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o matchfunction .
2123

2224
CMD ["/app/matchfunction"]

tutorials/custom_evaluator/solution/director/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o director .
2123

2224
CMD ["/app/director"]

tutorials/custom_evaluator/solution/evaluator/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o evaluator .
2123

2224
CMD ["/app/evaluator"]

tutorials/custom_evaluator/solution/frontend/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o frontend .
2123

2224
CMD ["/app/frontend"]

tutorials/custom_evaluator/solution/matchfunction/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o matchfunction .
2123

2224
CMD ["/app/matchfunction"]

tutorials/default_evaluator/director/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o director .
2123

2224
CMD ["/app/director"]

tutorials/default_evaluator/frontend/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o frontend .
2123

2224
CMD ["/app/frontend"]

tutorials/default_evaluator/matchfunction/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o matchfunction .
2123

2224
CMD ["/app/matchfunction"]

tutorials/default_evaluator/solution/director/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o director .
2123

2224
CMD ["/app/director"]

tutorials/default_evaluator/solution/frontend/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o frontend .
2123

2224
CMD ["/app/frontend"]

tutorials/default_evaluator/solution/matchfunction/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o matchfunction .
2123

2224
CMD ["/app/matchfunction"]

tutorials/matchmaker101/director/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o director .
2123

2224
CMD ["/app/director"]

tutorials/matchmaker101/frontend/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o frontend .
2123

2224
CMD ["/app/frontend"]

tutorials/matchmaker101/matchfunction/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o matchfunction .
2123

2224
CMD ["/app/matchfunction"]

tutorials/matchmaker101/solution/director/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o director .
2123

2224
CMD ["/app/director"]

tutorials/matchmaker101/solution/frontend/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o frontend .
2123

2224
CMD ["/app/frontend"]

tutorials/matchmaker101/solution/matchfunction/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o matchfunction .
2123

2224
CMD ["/app/matchfunction"]

tutorials/matchmaker102/director/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o director .
2123

2224
CMD ["/app/director"]

tutorials/matchmaker102/frontend/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o frontend .
2123

2224
CMD ["/app/frontend"]

tutorials/matchmaker102/matchfunction/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o matchfunction .
2123

2224
CMD ["/app/matchfunction"]

tutorials/matchmaker102/solution/director/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o director .
2123

2224
CMD ["/app/director"]

tutorials/matchmaker102/solution/frontend/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o frontend .
2123

2224
CMD ["/app/frontend"]

tutorials/matchmaker102/solution/matchfunction/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.5.0-rc.1
21+
RUN go mod tidy
2022
RUN go build -o matchfunction .
2123

2224
CMD ["/app/matchfunction"]

0 commit comments

Comments
 (0)