Go Webapp的Dockerfile目录结构

时间:2018-08-15 14:44:28

标签: docker go kubernetes dockerfile go-html-template

我正在Go中开发一个测试hello应用程序,它将可以访问Postgres数据库。这将使用状态集在kubernetes中发布,并具有一个包含两个容器映像的容器(一个用于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容器上获得以下日志条目。

  

应急:html / template:模式不匹配任何文件:templates/*.gohtml   goroutine 1 [运行中]:html / template.Must

3 个答案:

答案 0 :(得分:2)

在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,就可以删除这些行。

答案 1 :(得分:0)

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

答案 2 :(得分:0)

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

COPY . .

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

在您的终端(MacOS)中:

export GO111MODULE=on
go mod init

在您的Dockerfile中:

COPY go.mod .
RUN go mod download