52 Star 604 Fork 133

GVPKai / Qwerty-Learner

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 311 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM node:18 AS build
# 设置工作目录
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
# 将构建好的 React 应用复制到 Nginx 容器的默认站点目录
FROM nginx:alpine
COPY ./public/default.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/build /app
TypeScript
1
https://gitee.com/KaiyiWing/qwerty-learner.git
git@gitee.com:KaiyiWing/qwerty-learner.git
KaiyiWing
qwerty-learner
Qwerty-Learner
master

搜索帮助