瀏覽代碼

更新 'Dockerfile'

git-admin 1 年之前
父節點
當前提交
64e59345d2
共有 1 個文件被更改,包括 1 次插入7 次删除
  1. 1 7
      Dockerfile

+ 1 - 7
Dockerfile

@@ -1,13 +1,7 @@
 FROM node:alpine
 
 ENV TZ="Asia/Shanghai"
-ENV NGINX_PORT=8088
+ENV NGINX_PORT=80
 EXPOSE ${NGINX_PORT}
 COPY dist/  /usr/share/nginx/html/
 COPY nginx.conf /etc/nginx/nginx.conf
-RUN npm install  --force
-RUN cd dist/
-RUN rm -rf index.html
-
-ENTRYPOINT ["node","server.js"]
-