1 Star 0 Fork 156

hm前端/为键盘工作者设计的单词记忆

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 549 Bytes
一键复制 编辑 原始数据 按行查看 历史
rye catcher 提交于 2022-04-21 17:08 . Dev ql (#212)
# 运行下面的命令, 构建qwerty-learner镜像
# docker build -t qwertylearner .
# 下面的命令运行镜像, 访问localhost:8990访问应用, 8990可修改成你未占有的端口
# docker run -d -p 8990:3000 --name qwertylearnerapp qwertylearner:latest
FROM node:14
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 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/black-horse-front-end/qwerty-learner.git
[email protected]:black-horse-front-end/qwerty-learner.git
black-horse-front-end
qwerty-learner
为键盘工作者设计的单词记忆
master

搜索帮助