在 Docker 中使用多个 Proto 构建 - 找不到 Proto 文件
来源:stackoverflow
时间:2024-02-07 18:24:23 500浏览 收藏
积累知识,胜过积蓄金银!毕竟在Golang开发的过程中,会遇到各种各样的问题,往往都是一些细节知识点还没有掌握好而导致的,因此基础知识点的积累是很重要的。下面本文《在 Docker 中使用多个 Proto 构建 - 找不到 Proto 文件》,就带大家讲解一下知识点,若是你对本文感兴趣,或者是想搞懂其中某个知识点,就请你继续往下看吧~
我遇到了一个问题,无法构建包含多个原始文件(服务器和文本)的 dockerfile。服务器原型位于 dockerfile 目录中,但文本原型位于 dockerfile 父级中。因此,我在父目录中构建 dockerfile,以将文本原型复制到 docker 构建中。
docker 构建抱怨 proto/text.proto: 文件未找到.
,即使我将 proto/text.proto
复制到 server/proto/server.proto
的确切位置。
这是我的所有文件:
dockerfile
from --platform=linux/x86_64 golang:1.19.3-bullseye # install grpc run go install google.golang.org/grpc/cmd/[email protected] && \ go install google.golang.org/protobuf/cmd/[email protected] workdir /app copy server/. /app copy proto/text.proto /app/proto/text.proto # install protoc and zip system library run apt-get update && apt-get install -y zip && \ mkdir /opt/protoc && cd /opt/protoc && wget https://github.com/protocolbuffers/protobuf/releases/download/v3.7.0/protoc-3.7.0-linux-x86_64.zip && \ unzip protoc-3.7.0-linux-x86_64.zip # copy the grpc proto file and generate the go module run /opt/protoc/bin/protoc --go_out=/app/proto --proto_path=/app/proto --go_opt=paths=source_relative --go-grpc_out=/app/proto --go-grpc_opt=paths=source_relative /app/proto/text.proto /app/proto/server.proto expose 5051 run go build -o /server entrypoint ["/server"]
目录树
1.text ├── admin │ ├── dockerfile │ ├── app.js │ ├── package.json │ └── web │ ├── html │ │ └── index.html │ └── resources ├── compose.yaml ├── db │ ├── dockerfile │ ├── main.go │ ├── proto │ │ ├── db.pb.go │ │ ├── db.proto │ │ └── db_grpc.pb.go │ └── text.db ├── go.mod ├── go.sum ├── proto │ ├── text.pb.go │ └── text.proto └── server ├── dockerfile ├── main.go ├── proto │ ├── server.pb.go │ ├── server.proto │ └── server_grpc.pb.go └── text ├── text.go └── text_test.go
我可以在根 text
目录中运行以下协议:
protoc --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative proto/text.proto db/proto/db.proto server/proto/server.proto
并在本地运行服务器,但我无法构建我的 docker:
cmd
docker build -f server/dockerfile -t server .
错误
=> error [7/8] run /opt/protoc/bin/protoc --go_out=/app/proto --proto_path=/app/proto --go_opt=paths=source_relative --go-grpc_out=/app/proto --go-grpc_opt=paths=source_relative 0.4s ------ > [7/8] run /opt/protoc/bin/protoc --go_out=/app/proto --proto_path=/app/proto --go_opt=paths=source_relative --go-grpc_out=/app/proto --go-grpc_opt=paths=source_relative /app/proto/text.proto /app/proto/server.proto: #11 0.427 proto/text.proto: file not found. #11 0.429 server.proto: import "proto/text.proto" was not found or had errors. #11 0.431 server.proto:25:5: "text.status" seems to be defined in "text.proto", which is not imported by "server.proto". to use it here, please add the necessary import. ------ executor failed running [/bin/sh -c /opt/protoc/bin/protoc --go_out=/app/pro
文本/服务器/原型
syntax="proto3"; package server; import "proto/text.proto"; option go_package = "github.com/amb1s1/text/server/proto/server"; message sendmessagerequest { string token = 1; string phone = 2; string message = 3; bool dry_run = 4; }; message sendmessageresponse { text.status status = 1; }; service text { // sendmessage sents sms message. rpc sendmessage(sendmessagerequest) returns (sendmessageresponse) {} }
文本/原型/
syntax="proto3"; package text; option go_package = "github.com/amb1s1/text/proto"; enum Status { UNKNOW = 0; OK = 1; TOKENS_EXISTS = 2; TOKEN_NOT_FOUND = 3; FAILED_NOT_SENT= 4; DRY_RUN_OK = 5; ZERO_BALANCE = 6; WRONG_TOKEN = 7; }
正确答案
根据评论;在您的 docker 映像中,您具有目录结构:
/app/proto/server.proto /app/proto/text.proto
server.proto
使用 import "proto/text.proto"
导入 text.proto
。
这意味着 protoc
将在导入路径中查找名为 proto/text.proto
的文件。您指定 --proto_path=/app/proto
作为 protoc
的参数,这意味着 protoc
将检查 /app/proto/proto/text.proto
是否不存在(因此出现问题)。要解决此问题,请删除 --proto_path=/app/proto
(以便 protoc
使用工作文件夹)或指定 --proto_path=/app
。
终于介绍完啦!小伙伴们,这篇关于《在 Docker 中使用多个 Proto 构建 - 找不到 Proto 文件》的介绍应该让你收获多多了吧!欢迎大家收藏或分享给更多需要学习的朋友吧~golang学习网公众号也会发布Golang相关知识,快来关注吧!
-
502 收藏
-
502 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
139 收藏
-
204 收藏
-
325 收藏
-
477 收藏
-
486 收藏
-
439 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习