1 Star 0 Fork 196

chenoh/gin-admin

forked from Lyric/gin-admin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 611 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM golang:alpine as builder
ARG APP=ginadmin
ARG VERSION=v10.0.2
ARG RELEASE_TAG=$(VERSION)
WORKDIR /go/src/${APP}
COPY . .
RUN apk add --no-cache gcc musl-dev
ENV GOPROXY="https://goproxy.cn"
RUN go build -ldflags "-w -s -X main.VERSION=${RELEASE_TAG}" -o ./${APP} .
FROM alpine
ARG APP=ginadmin
WORKDIR /go/src/${APP}
COPY --from=builder /go/src/${APP}/${APP} /usr/bin/
COPY --from=builder /go/src/${APP}/build/configs /usr/bin/configs
COPY --from=builder /go/src/${APP}/build/dist /usr/bin/dist
ENTRYPOINT ["ginadmin", "start", "-d", "/usr/bin/configs", "-c", "prod", "-s", "/usr/bin/dist"]
EXPOSE 8040
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/cx8/gin-admin.git
git@gitee.com:cx8/gin-admin.git
cx8
gin-admin
gin-admin
main

搜索帮助