瀏覽代碼

separate npm install dev and production

pull/342/head
Guillaume Vincent 8 年之前
父節點
當前提交
3ccd58f4c0
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      Dockerfile

+ 2
- 1
Dockerfile 查看文件

@@ -4,7 +4,8 @@ RUN mkdir -p /frontend
WORKDIR /frontend

COPY package.json /frontend/
RUN npm install
RUN npm install --production --ignore-scripts --unsafe-perm
RUN npm install --only=dev --ignore-scripts --unsafe-perm

COPY . /frontend
RUN npm run build


Loading…
取消
儲存