Skip to content

Commit

Permalink
Switch to build .
Browse files Browse the repository at this point in the history
  • Loading branch information
zasweq committed May 31, 2024
1 parent deace1d commit e76b1b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion interop/xds/client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ COPY . .

# Build a static binary without cgo so that we can copy just the binary in the
# final image, and can get rid of Go compiler and gRPC-Go dependencies.
RUN cd interop/xds/client && go build -tags osusergo,netgo client.go
RUN cd interop/xds/client && go build -tags osusergo,netgo .

# Second stage of the build which copies over only the client binary and skips
# the Go compiler and gRPC repo from the earlier stage. This significantly
Expand Down
2 changes: 1 addition & 1 deletion interop/xds/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ COPY . .

# Build a static binary without cgo so that we can copy just the binary in the
# final image, and can get rid of the Go compiler and gRPC-Go dependencies.
RUN cd interop/xds/server && go build -tags osusergo,netgo server.go
RUN cd interop/xds/server && go build -tags osusergo,netgo .

# Second stage of the build which copies over only the server binary and skips
# the Go compiler and gRPC repo from the earlier stage. This significantly
Expand Down

0 comments on commit e76b1b6

Please sign in to comment.