1 Star 0 Fork 264

前端少年汪/Ginblog

forked from wejectchan/Ginblog 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 465 Bytes
一键复制 编辑 原始数据 按行查看 历史
wejectchan 提交于 2022-07-27 00:58 . update readme,upgrade go mod files
FROM golang:alpine as builder
ENV GOPROXY=https://goproxy.cn,https://goproxy.io,direct \
GO111MODULE=on \
CGO_ENABLED=1
#设置时区参数
ENV TZ=Asia/Shanghai
RUN echo "https://mirrors.aliyun.com/alpine/v3.4/main/" > /etc/apk/repositories \
&& apk --no-cache add tzdata zeromq \
&& ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \
&& echo '$TZ' > /etc/timezone
WORKDIR /app
COPY . /app
RUN go build .
EXPOSE 3000
ENTRYPOINT ["./ginblog"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/frontendBoy_wang/ginblog.git
git@gitee.com:frontendBoy_wang/ginblog.git
frontendBoy_wang
ginblog
Ginblog
master

搜索帮助