Administrator
2022-04-11 79d9fc857559982b00b68b2d709807bdc4cd286f
1
2
3
4
5
6
7
8
FROM nginx:1.9.0
 
#将dist目录内容复制到nginx容器html内部
COPY dist /usr/share/nginx/html/
 
COPY nginx.conf /etc/nginx/nginx.conf
 
EXPOSE 80