You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
406 B
12 lines
406 B
FROM nginx:latest
|
|
LABEL maintainer="colin.in@foxmail.com"
|
|
|
|
# 将vue构建后的dist目录中的内容复制到docker容器中nginx默认配置的部署目录
|
|
COPY ./dist /usr/share/nginx/html
|
|
|
|
# 将docker容器中默认的配置替换为本地配置
|
|
COPY ./docker/nginx/nginx.conf /etc/nginx/nginx.conf
|
|
COPY ./docker/nginx/default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# 端口映射
|
|
EXPOSE 80
|
|
|