1 Star 0 Fork 0

razonyang/gopkgs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 522 Bytes
一键复制 编辑 原始数据 按行查看 历史
razonyang 提交于 2020-09-04 03:33 . Install tzdata
FROM golang:latest as builder
ENV GO111MODULE=on \
CGO_ENABLED=0 \
GOOS=linux \
GOARCH=amd64 \
GOPROXY=https://goproxy.cn,direct
WORKDIR /src
COPY ./ /src
RUN go mod download
RUN go build github.com/gobuffalo/packr/v2/packr2
RUN ./packr2 build -o dist/main
FROM ubuntu
WORKDIR /app
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /src/dist/main /app/gopkgs
RUN apt update
RUN apt install -f tzdata
# Command to run
ENTRYPOINT ["/app/gopkgs", "serve"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/razonyang/gopkgs.git
git@gitee.com:razonyang/gopkgs.git
razonyang
gopkgs
gopkgs
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385