Skip to content

Commit

Permalink
add grpc/gateway plugin (#262)
Browse files Browse the repository at this point in the history
Add a grpc/gateway plugin.

Fixes #152.
  • Loading branch information
pkwarren authored Jan 17, 2023
1 parent 813e190 commit 19dfdb8
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 0 deletions.
3 changes: 3 additions & 0 deletions plugins/grpc-ecosystem/gateway/source.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source:
goproxy:
name: github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway
2 changes: 2 additions & 0 deletions plugins/grpc-ecosystem/gateway/v2.15.0/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!Dockerfile
11 changes: 11 additions & 0 deletions plugins/grpc-ecosystem/gateway/v2.15.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# syntax=docker/dockerfile:1.4
FROM golang:1.19.5-bullseye AS build
RUN --mount=type=cache,target=/go/pkg/mod \
CGO_ENABLED=0 \
go install -ldflags="-s -w" -trimpath github.com/grpc-ecosystem/grpc-gateway/v2/[email protected]

FROM scratch
COPY --from=build --link /etc/passwd /etc/passwd
COPY --from=build --link --chown=root:root /go/bin/protoc-gen-grpc-gateway .
USER nobody
ENTRYPOINT [ "/protoc-gen-grpc-gateway" ]
12 changes: 12 additions & 0 deletions plugins/grpc-ecosystem/gateway/v2.15.0/buf.plugin.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: v1
name: buf.build/grpc-ecosystem/gateway
plugin_version: v2.15.0
source_url: https://github.com/grpc/grpc-gateway
description: gRPC to JSON proxy generator following the gRPC HTTP spec.
output_languages:
- go
deps:
- plugin: buf.build/protocolbuffers/go:v1.28.1
- plugin: buf.build/grpc/go:v1.2.0
spdx_license_id: BSD-3-Clause
license_url: https://github.com/grpc-ecosystem/grpc-gateway/blob/v2.15.0/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
h1:47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
h1:47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=

0 comments on commit 19dfdb8

Please sign in to comment.