-
Notifications
You must be signed in to change notification settings - Fork 99
/
protoc.Dockerfile
34 lines (25 loc) · 1.07 KB
/
protoc.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# This dockerfile generates the container image that is required to run "make protoc-gen"
# Use an official Golang runtime as a parent image
FROM golang:1.23
ARG TARGETARCH
# Set environment variables
ENV PROTOC_VERSION=28.2
# Install dependencies
RUN apt-get update && apt-get install -y unzip curl tree
# Install protoc
# Deal with the arm64==aarch64 ambiguity
RUN if [ "$TARGETARCH" = "arm64" ]; then \
curl -qL https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-aarch_64.zip -o protoc.zip; \
else \
curl -qL https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip -o protoc.zip; \
fi
RUN unzip protoc.zip -d /usr/local
RUN rm protoc.zip
# Install protoc-gen-go
RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
# Install protoc-gen-go-grpc
RUN go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
# Verify installations
RUN protoc --version
RUN protoc-gen-go --version
RUN protoc-gen-go-grpc --version