golang 基於Mac os 構建鏡像

來源:互聯網
上載者:User

golang測試專案

項目內容如下:

package mainimport (    "fmt"    "net/http")func main() {    http.HandleFunc("/", handler)    http.ListenAndServe(":8000", nil)}func handler(rw http.ResponseWriter, req *http.Request) {    fmt.Fprintf(rw, "Hello World,%s", req.URL.Path[1:])}

基礎鏡像準備

自訂最小基礎鏡像

自訂基礎鏡像官方文檔看完後最還是google一下如何構建,tar cv --files-from /dev/null | docker import - scratch,使用docker images查看scratch的大小為0B,基礎鏡像已經構建成功,接下來把golang程式構建鏡像

構建golang鏡像

編寫Dockerfile

在當前項目目錄下建立Dockerfile檔案,如果使用IDE建議安裝plugins就能文法高亮及提示

FROM scratchADD main /mainEXPOSE 8000CMD ["/main"]

構建golang項目鏡像

CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o  main .docker build -t "container/echo:latest" .docker run -itd --name echo -p 8000:8000 container/echo:latest# 查看容器是否啟動成功,沒成功使用docker logs查看日誌docker ps -a 

mac os 啟動錯誤

standard_init_linux.go:190: exec user process caused "exec format error"
如果出現以上錯誤是因為你的golangbuild時沒有指定為linux平台,因為Docker核心依賴於Linux開發的,所以在mac os啟動Docker時還是使用Boot2Docker拖起的

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.