我在 Windows 上有 gcc。C:\Users\jkrov>gcc --versiongcc (MinGW.org GCC-8.2.0-5) 8.2.0Copyright (C) 2018 Free Software Foundation, Inc.This is free software; see the source for copying conditions. There is NOwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.我的泊坞窗文件:FROM golang:alpineRUN mkdir /appWORKDIR /appADD . /appRUN go build -o main .EXPOSE 8080CMD [ "app/main" ]当我尝试构建图像时出现错误:exec: "gcc": executable file not found in $PATH
3 回答
30秒到达战场
TA贡献1828条经验 获得超6个赞
我在使用 alpine 图像构建 go 应用程序时遇到了同样的问题。安装 gcc 解决了这个问题。您的 Dockerfile 应该如下所示:
FROM golang:alpine
RUN apk add build-base
RUN mkdir /app
WORKDIR /app
ADD . /app
RUN go build -o main .
EXPOSE 8080
CMD [ "app/main" ]
德玛西亚99
TA贡献1770条经验 获得超3个赞
添加 gcc 工具解决了问题。
RUN apk add build-base
你也可以这样:
RUN apk --no-cache add make git gcc libtool musl-dev ca-certificates dumb-init
DIEA
TA贡献1820条经验 获得超2个赞
它对我有用:
添加
CGO_ENABLED=0 GOOS=linux GOARCH=amd64
跑步
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o main ./
- 3 回答
- 0 关注
- 154 浏览
添加回答
举报
0/150
提交
取消