From 174c5896cd35beb88797b4daf33269a41b3a1ba1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Wei=C3=9Fe?= <66256922+daniel-weisse@users.noreply.github.com> Date: Tue, 13 Sep 2022 11:01:51 +0200 Subject: [PATCH] Fix missing proto generation (#142) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Weiße --- proto/Dockerfile.gen-proto | 1 + 1 file changed, 1 insertion(+) diff --git a/proto/Dockerfile.gen-proto b/proto/Dockerfile.gen-proto index e236319a9..a2c93c6c3 100644 --- a/proto/Dockerfile.gen-proto +++ b/proto/Dockerfile.gen-proto @@ -47,6 +47,7 @@ RUN protoc --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_o ## verify WORKDIR /verify COPY verify/verifyproto/*.proto /verify +RUN protoc --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative *.proto ## init WORKDIR /init