2 Star 3 Fork 1

Lvgege/L英语打字练习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 558 Bytes
一键复制 编辑 原始数据 按行查看 历史
Luyu Cheng 提交于 2023-02-09 15:53 . Build with Vite (#308)
# 运行下面的命令, 构建qwerty-learner镜像
# docker build -t qwertylearner .
# 下面的命令运行镜像, 访问localhost:8990访问应用, 8990可修改成你未占有的端口
# docker run -d -p 8990:3000 --name qwertylearnerapp qwertylearner:latest
FROM node:14
LABEL maintainer="sevenyoungairye <[email protected]>"
WORKDIR /app/qwerty-learner
COPY package*.json .
COPY yarn.lock .
RUN npm config set registry https://registry.npm.taobao.org
RUN npm install yarn -g --force
RUN yarn install
COPY . .
EXPOSE 3000
CMD yarn start
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lspace/l-english-typing-practice.git
[email protected]:lspace/l-english-typing-practice.git
lspace
l-english-typing-practice
L英语打字练习
master

搜索帮助