Go Webapp 的 Dockerfile 目录结构

Dockerfile directory structure for Go Webapp

我正在用 Go 开发一个测试 hello 应用程序,它可以访问 Postgres 数据库。这将使用 statefulset 在 kubernetes 中发布,并且有一个 pod 和两个容器镜像(一个用于 pgsql,一个用于 goapp)。

├── hello-app
|   ├── templates
|       ├── file1.gohtml
|       ├── file2.gohtml
|       └── file3.gohtml
|   ├── Dockerfile
|   └── hello-app.go
├── psql
|   ├── Dockerfile
|   ├── createUser.sh
|   └── createDB.sql
├── yaml
|   └── statefulset.yaml

我无法将 Dockerfile 和 Go 应用程序结合起来。在我的第一段 Go 代码中,我使用 'template.Must' 函数来引用 'templates' 目录。很明显,当我 运行 把它作为一个容器放起来时,目录结构是不同的。

我还没有完全弄清楚如何在 Dockerfile 中执行此操作,正在寻找一些指导。

/app/hello-app.go

package main

import (

        "database/sql"
        "fmt"
        "os"
        _ "github.com/lib/pq"
        "html/template"
        "net/http"
        "strconv"
)

var db *sql.DB
var tpl *template.Template

func init() {
        host := os.Getenv("VARIABLE")
        var err error
        db, err = sql.Open("postgres", "postgres://user:password@"+host+"/dbname?sslmode=disable")
        if err != nil {
                panic(err)
        }

        if err = db.Ping(); err != nil {
                panic(err)
        }
        fmt.Println("You connected to your database.")

        tpl = template.Must(template.ParseGlob("templates/*.gohtml"))

/app/Dockerfile

FROM golang:1.8-alpine
RUN apk add --update go git
RUN go get github.com/lib/pq/...
ADD . /go/src/hello-app
RUN go install hello-app
Add templates templates/
ENV USER=username \
    PASSWORD=password \
    DB=dbname \
    HOST=hostname \
    PORT=5432

FROM alpine:latest
COPY --from=0 /go/bin/hello-app/ .
ENV PORT 4040
CMD ["./hello-app"]

当我 运行 像在 kubernetes (GCP) 中那样启动时,我在 hello-app 容器上得到以下日志条目。

panic: html/template: pattern matches no files: templates/*.gohtml goroutine 1 [running]: html/template.Must

在 Dockerfile 的第二阶段,您只是从前一阶段复制 Go 二进制文件。您还必须将 templates 目录也复制到第二阶段,以便 Go 二进制文件可以引用您的 HTML 模板:

FROM golang:1.8-alpine
RUN apk add --update go git
RUN go get github.com/lib/pq/...
ADD . /go/src/hello-app
RUN go install hello-app
ENV USER=username \
    PASSWORD=password \
    DB=dbname \
    HOST=hostname \
    PORT=5432

FROM alpine:latest
COPY --from=0 /go/bin/hello-app/ .
COPY --from=0 /go/src/hello-app/templates ./templates
ENV PORT 4040
CMD ["./hello-app"]

我不确定这是否是常见的做法,但是当我对构建过程中的哪个文件夹中的内容感到困惑时,我只是 ls 有问题的目录以更好地理解构建过程中可能发生的情况:

RUN ls

显然,您可以在完成 Dockerfile 后删除这些行。

该错误是因为 template.ParseGlob 在您的模板目录中找不到任何匹配的文件。尝试使用 COPY <YOUR LOCAL GOPATH/src/hello-app> <DOCKER DIR PATH> 复制整个目录,而不是 COPY --from=0 /go/bin/hello-app/ .。此外,当您构建应用程序时,您的模板文件夹仍将位于源文件夹中,因此这也可能导致问题。解决方案是在 app 目录中 运行 一个 go build 并使用我的 COPY 命令。

我的模板文件夹遇到了同样的错误,但通过在我的 Dockerfile 中使用此命令从我的根文件夹复制所有文件解决了这个问题:

COPY . .

此外,当您使用外部库时,您可能需要启用 GO111MODULE。

在您的终端 (MacOS) 中:

export GO111MODULE=on
go mod init

在您的 Dockerfile 中:

COPY go.mod .
RUN go mod download