dongshipang8094 2018-09-20 16:48
浏览 159
已采纳

在Dockerfile中为Swagger生成的Go服务器传递参数

I'm new to writing Dockerfiles and using Swagger so I was wondering if someone could help me with one thing. I'm building a binary from Swagger generated server code and I need to pass in arguments specific to the go server when running it, but passing it into ENTRYPOINT or CMD gives me "unknown flag" error.

My Dockerfile looks like this:

FROM golang:1.10.1-alpine3.7 AS build

RUN apk add --no-cache git
RUN go get github.com/golang/dep/cmd/dep

WORKDIR /go/src/<path_to_workdir>
RUN dep ensure -vendor-only

WORKDIR /cmd/data-server
ENV SRC_DIR=/go/src/<path_to_src_dir>
ADD . $SRC_DIR
RUN cd $SRC_DIR; go build -o data; cp data /cmd/data-server
ENTRYPOINT ["./data", "--scheme http"]

Which fails, on the previously mentioned error. How can I do this correctly?

  • 写回答

1条回答 默认 最新

  • dsb238100 2018-09-20 18:23
    关注

    You can write

    ENTRYPOINT ["./data", "--scheme",  "http"]
    

    then you would simply need docker run name-of-image

    or you can pass the arguments when running the image

    docker run --scheme http
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 一道python难题
  • ¥15 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试
  • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题
  • ¥15 教务系统账号被盗号如何追溯设备
  • ¥20 delta降尺度方法,未来数据怎么降尺度