10 lines
180 B
Docker
10 lines
180 B
Docker
# ===== 前端 Nginx =====
|
|
FROM nginx:alpine
|
|
|
|
# 先构建好 Vue 再打镜像
|
|
COPY static/dist/ /usr/share/nginx/html/
|
|
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 3006
|