Skip to content

Commit

Permalink
update tutorials dependency for version 1.5.0-rc.1 (#1496)
Browse files Browse the repository at this point in the history
  • Loading branch information
mridulji authored Sep 23, 2022
1 parent c410b70 commit 4239e65
Show file tree
Hide file tree
Showing 26 changed files with 52 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tutorials/custom_evaluator/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

CMD ["/app/director"]
2 changes: 2 additions & 0 deletions tutorials/custom_evaluator/evaluator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o evaluator .

CMD ["/app/evaluator"]
2 changes: 2 additions & 0 deletions tutorials/custom_evaluator/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

CMD ["/app/frontend"]
2 changes: 2 additions & 0 deletions tutorials/custom_evaluator/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

CMD ["/app/matchfunction"]
2 changes: 2 additions & 0 deletions tutorials/custom_evaluator/solution/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

CMD ["/app/director"]
2 changes: 2 additions & 0 deletions tutorials/custom_evaluator/solution/evaluator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o evaluator .

CMD ["/app/evaluator"]
2 changes: 2 additions & 0 deletions tutorials/custom_evaluator/solution/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

CMD ["/app/frontend"]
2 changes: 2 additions & 0 deletions tutorials/custom_evaluator/solution/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

CMD ["/app/matchfunction"]
2 changes: 2 additions & 0 deletions tutorials/default_evaluator/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

CMD ["/app/director"]
2 changes: 2 additions & 0 deletions tutorials/default_evaluator/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

CMD ["/app/frontend"]
2 changes: 2 additions & 0 deletions tutorials/default_evaluator/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

CMD ["/app/matchfunction"]
2 changes: 2 additions & 0 deletions tutorials/default_evaluator/solution/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

CMD ["/app/director"]
2 changes: 2 additions & 0 deletions tutorials/default_evaluator/solution/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

CMD ["/app/frontend"]
2 changes: 2 additions & 0 deletions tutorials/default_evaluator/solution/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

CMD ["/app/matchfunction"]
2 changes: 2 additions & 0 deletions tutorials/matchmaker101/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

CMD ["/app/director"]
2 changes: 2 additions & 0 deletions tutorials/matchmaker101/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

CMD ["/app/frontend"]
2 changes: 2 additions & 0 deletions tutorials/matchmaker101/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

CMD ["/app/matchfunction"]
2 changes: 2 additions & 0 deletions tutorials/matchmaker101/solution/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

CMD ["/app/director"]
2 changes: 2 additions & 0 deletions tutorials/matchmaker101/solution/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

CMD ["/app/frontend"]
2 changes: 2 additions & 0 deletions tutorials/matchmaker101/solution/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

CMD ["/app/matchfunction"]
2 changes: 2 additions & 0 deletions tutorials/matchmaker102/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

CMD ["/app/director"]
2 changes: 2 additions & 0 deletions tutorials/matchmaker102/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

CMD ["/app/frontend"]
2 changes: 2 additions & 0 deletions tutorials/matchmaker102/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

CMD ["/app/matchfunction"]
2 changes: 2 additions & 0 deletions tutorials/matchmaker102/solution/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

CMD ["/app/director"]
2 changes: 2 additions & 0 deletions tutorials/matchmaker102/solution/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

CMD ["/app/frontend"]
2 changes: 2 additions & 0 deletions tutorials/matchmaker102/solution/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

CMD ["/app/matchfunction"]

0 comments on commit 4239e65

Please sign in to comment.