登录
首页 >  Golang >  Go问答

在 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相关知识,快来关注吧!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>