13 lines
204 B
Docker
13 lines
204 B
Docker
FROM nginx:alpine
|
|
|
|
# 复制构建产物
|
|
COPY dist /usr/share/nginx/html
|
|
|
|
# 复制Nginx配置
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# 暴露端口
|
|
EXPOSE 3000
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|