feat: 初始化后端微服务架构骨架
This commit is contained in:
14
backend/scripts/docker-proto-builder/Dockerfile
Normal file
14
backend/scripts/docker-proto-builder/Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
||||
FROM golang:1.26.1-alpine3.23
|
||||
|
||||
# 安装 protoc 和相关工具
|
||||
RUN apk add --no-cache protobuf-dev
|
||||
|
||||
# 安装 protoc-gen-go 和 protoc-gen-go-grpc
|
||||
RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
|
||||
RUN go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
|
||||
|
||||
# 设置工作目录
|
||||
WORKDIR /proto
|
||||
|
||||
# 生成 proto 文件的命令
|
||||
CMD protoc --go_out=. --go-grpc_out=. common/*.proto
|
||||
Reference in New Issue
Block a user