Skip to content

Commit e76b1b6

Browse files
committed
Switch to build .
1 parent deace1d commit e76b1b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

interop/xds/client/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ COPY . .
2424

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

2929
# Second stage of the build which copies over only the client binary and skips
3030
# the Go compiler and gRPC repo from the earlier stage. This significantly

interop/xds/server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ COPY . .
2424

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

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

0 commit comments

Comments
 (0)