Vue 项目打包Docker镜像

1、安装 Docker

2、在项目根目录新建 Dockerfile 文件

#dockerfile
#使用 nginx最新版本作为基础镜像
FROM nginx

#将当前文件夹的dist文件复制到容器的/usr/share/nginx/html目录
COPY ./dist/ /usr/share/nginx/html/

COPY default.conf /etc/nginx/conf.d/default.conf

3、在项目根目录新建 default.conf 文件

server {
    listen 80;
    server_name  localhost;

    #charset koi8-r;
    access_log  /var/log/nginx/host.access.log  main;
    error_log  /var/log/nginx/error.log  error;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
        try_files $uri $uri/ /index.html;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}

4、编译项目

npm run build

5、生成镜像

docker build . -t 命名镜像名

6、导出镜像

 docker save -o /保存的位置/打包名称.tar 你的docker镜像
最后修改:2021 年 12 月 27 日
如果觉得我的文章对你有用,请随意赞赏