chd 1 年之前
父節點
當前提交
67bd3156f3
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      Dockerfile

+ 2 - 1
Dockerfile

@@ -5,7 +5,8 @@ ENV NGINX_PORT=8088
 EXPOSE ${NGINX_PORT}
 COPY dist/  /usr/share/nginx/html/
 COPY nginx.conf /etc/nginx/nginx.conf
-RUN npm install
+RUN npm install  --force
+RUN cd dist/
 RUN rm -rf index.html
 
 ENTRYPOINT ["node","server.js"]