You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just tried the generation of a grpc-gateway with gen-grpc-gateway:1.20_2.
Our protobufs use a go_package option with an url (e.g. our.domain.com/path/to/go/code) so the Go code gets generated into a folder gen/grpc-gateway/src/gen/pb-go/our.domain.com/path/to/go/code.
The swagger files get generated into gen/grpc-gateway/src/gen/pb-go/ directly.
Hi,
I just tried the generation of a grpc-gateway with
gen-grpc-gateway:1.20_2
.Our protobufs use a
go_package
option with an url (e.g.our.domain.com/path/to/go/code
) so the Go code gets generated into a foldergen/grpc-gateway/src/gen/pb-go/our.domain.com/path/to/go/code
.The swagger files get generated into
gen/grpc-gateway/src/gen/pb-go/
directly.So the
ADD
instruction in https://github.com/namely/docker-protoc/blob/master/gwy/templates/Dockerfile.tmpl#L25 can not copy these.Maybe directly copying from
$OUT_PATH/
will work here?The text was updated successfully, but these errors were encountered: