1 Star 0 Fork 0

huoyingwhw/kratosRecoverPanic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 459 Bytes
一键复制 编辑 原始数据 按行查看 历史
huoyingwhw 提交于 2023-11-19 12:28 . origin
FROM golang:1.18 AS builder
COPY . /src
WORKDIR /src
RUN GOPROXY=https://goproxy.cn make build
FROM debian:stable-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
netbase \
&& rm -rf /var/lib/apt/lists/ \
&& apt-get autoremove -y && apt-get autoclean -y
COPY --from=builder /src/bin /app
WORKDIR /app
EXPOSE 8000
EXPOSE 9000
VOLUME /data/conf
CMD ["./server", "-conf", "/data/conf"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/huoyingwhw/kratos-recover-panic.git
git@gitee.com:huoyingwhw/kratos-recover-panic.git
huoyingwhw
kratos-recover-panic
kratosRecoverPanic
main

搜索帮助