Files
avue-datav/docker/Dockerfile

16 lines
290 B
Docker
Raw Permalink Normal View History

2024-09-20 12:02:02 +08:00
# 使用 Nginx 镜像作为最终镜像
FROM nginx:alpine
# 设置工作目录
WORKDIR /usr/share/nginx/html
# 复制 文件
COPY ../dist/ /usr/share/nginx/html/
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
# 暴露端口
EXPOSE 80
# 启动 Nginx
CMD ["nginx", "-g", "daemon off;"]