Dockerfile 106 B

123456
  1. FROM nginx
  2. #将dist目录内容复制到nginx容器html内部
  3. COPY dist /usr/share/nginx/html/
  4. EXPOSE 80