Skip to content

Commit

Permalink
Update grpc-java to v1.65.0 (#1323)
Browse files Browse the repository at this point in the history
  • Loading branch information
app-token-plugins[bot] authored Jun 28, 2024
1 parent 333f3a8 commit 39f1117
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/grpc/java/v1.65.0/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!Dockerfile
24 changes: 24 additions & 0 deletions plugins/grpc/java/v1.65.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# syntax=docker/dockerfile:1.8
FROM debian:bookworm-20240612 AS build

ARG TARGETARCH

WORKDIR /build
RUN apt-get update \
&& apt-get install -y curl
RUN arch=${TARGETARCH}; \
if [ "${arch}" = "arm64" ]; then\
arch="aarch_64"; \
elif [ "${arch}" = "amd64" ]; then\
arch="x86_64"; \
fi; \
echo "${arch}"; \
curl -fsSL -o protoc-gen-grpc-java https://repo1.maven.org/maven2/io/grpc/protoc-gen-grpc-java/1.65.0/protoc-gen-grpc-java-1.65.0-linux-${arch}.exe

FROM gcr.io/distroless/base-debian12:latest@sha256:786007f631d22e8a1a5084c5b177352d9dcac24b1e8c815187750f70b24a9fc6 AS base

FROM scratch
COPY --link --from=base / /
COPY --link --from=build --chmod=0755 --chown=root:root /build/protoc-gen-grpc-java .
USER nobody
ENTRYPOINT [ "/protoc-gen-grpc-java" ]
25 changes: 25 additions & 0 deletions plugins/grpc/java/v1.65.0/buf.plugin.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: v1
name: buf.build/grpc/java
plugin_version: v1.65.0
source_url: https://github.com/grpc/grpc-java
integration_guide_url: https://grpc.io/docs/languages/java/quickstart
description: Generates Java client and server stubs for the gRPC framework.
deps:
- plugin: buf.build/protocolbuffers/java:v25.3
output_languages:
- java
spdx_license_id: Apache-2.0
license_url: https://github.com/grpc/grpc-java/blob/v1.65.0/LICENSE
registry:
maven:
deps:
- io.grpc:grpc-core:1.65.0
- io.grpc:grpc-protobuf:1.65.0
- io.grpc:grpc-stub:1.65.0
additional_runtimes:
- name: lite
deps:
- io.grpc:grpc-core:1.65.0
- io.grpc:grpc-protobuf-lite:1.65.0
- io.grpc:grpc-stub:1.65.0
opts: [lite]
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
h1:WiyLiEYTGmM2B6YNgOSJ+BimVvfToVlfQH3RrdT2cg0=
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
h1:vrzuKlFrvkeUl1AYdADSF5gQBVCdlPIPTtkfpH/BhwA=

0 comments on commit 39f1117

Please sign in to comment.