3 Star 13 Fork 8

Gitee 极速下载/taskcafe

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/JordanKnott/taskcafe
克隆/下载
Dockerfile 508 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM node:14.5-alpine as frontend
RUN apk --no-cache add curl
WORKDIR /usr/src/app
COPY frontend .
RUN yarn install
RUN yarn build
FROM golang:1.14.5-alpine as backend
WORKDIR /usr/src/app
COPY go.mod go.mod
COPY go.sum go.sum
RUN go mod download
COPY . .
COPY --from=frontend /usr/src/app/build ./frontend/build
RUN go run cmd/mage/main.go backend:genFrontend backend:genMigrations backend:build
FROM alpine:latest
WORKDIR /root/
COPY --from=backend /usr/src/app/dist/taskcafe .
CMD ["./taskcafe", "web"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/taskcafe.git
git@gitee.com:mirrors/taskcafe.git
mirrors
taskcafe
taskcafe
master

搜索帮助