Linux 命令:
cd /opt/code
npm install -g @vue/cli
vue create vue-first
cd vue-first
npm run build
新建Dockerfile文件,内容如下:
FROM nginx
COPY dist /usr/share/nginx/html
Linux 命令:
docker build -t vue-first .
docker run -d --name vue-first -p 8081:80 vue-first
文件目录如下: