Commit 161e1016 by lanyulei Committed by GitHub

Merge pull request #48 from lanyulei/dev

fix: update Dockerfile.
parents 22be4c91 a2648e0b
Showing with 5 additions and 2 deletions
FROM node:14.15.0
FROM node:14.15.0 as builder
WORKDIR /opt/ferry_web
COPY . .
RUN npm config set registry "https://registry.npm.taobao.org/" && npm install
RUN npm install -g cnpm --registry=https://registry.npm.taobao.org && cnpm install
RUN npm run build:prod
FROM nginx:1.18.0
COPY --from=builder /opt/ferry_web/web /opt/web
#暴露容器8001端口
EXPOSE 8001
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment