3 Star 0 Fork 0

Choreograph_execute/chor_js_modify

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 360 Bytes
一键复制 编辑 原始数据 按行查看 历史
jan.ladleif 提交于 2020-10-29 13:13 . Fix typo in Dockerfile
FROM node:12 as builder
WORKDIR /usr/src
# copy both package and package-lock
COPY package*.json ./
COPY app ./app
RUN npm install
RUN npm run build
# copy built files over from first stage
FROM node:current-alpine
EXPOSE 9013
COPY --from=builder /usr/src/build /usr/src/build
WORKDIR /usr/src
RUN npm install http-server -g
CMD http-server ./build -p 9013
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/choreograph_execute/chor_js_modify.git
git@gitee.com:choreograph_execute/chor_js_modify.git
choreograph_execute
chor_js_modify
chor_js_modify
master

搜索帮助