1 Star 0 Fork 0

zhuKJ/gocron

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 896 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhuKJ 提交于 2024-01-05 15:02 . fix
FROM ccr.ccs.tencentyun.com/iops/golang:1.15-alpine as builder
# ccr.ccs.tencentyun.com/iops/golang:1.15-alpine镜像包含了下面的两行注解
# RUN apk update \
# && apk add --no-cache git ca-certificates make bash yarn nodejs
RUN go env -w GO111MODULE=on && \
go env -w GOPROXY=https://goproxy.cn,direct
WORKDIR /app
RUN git clone https://gitee.com/zhuKJ8/gocron.git \
&& cd gocron \
&& yarn config set ignore-engines true \
&& make install-vue \
&& make build-vue \
&& make statik \
&& CGO_ENABLED=0 make gocron
FROM docker4cn/alpine:3.12-aliyun
RUN apk add --no-cache ca-certificates tzdata \
&& addgroup -S app \
&& adduser -S -g app app
RUN cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
WORKDIR /app
COPY --from=builder /app/gocron/bin/gocron .
RUN chown -R app:app ./
EXPOSE 5920
USER app
ENTRYPOINT ["/app/gocron", "web"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhuKJ8/gocron.git
git@gitee.com:zhuKJ8/gocron.git
zhuKJ8
gocron
gocron
master

搜索帮助