gpt4 book ai didi

Go Webapp 的 Dockerfile 目录结构

转载 作者:IT王子 更新时间:2023-10-29 01:40:52 25 4
gpt4 key购买 nike

我正在使用 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 后删除这些行。

关于Go Webapp 的 Dockerfile 目录结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51860969/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com