5 lines
125 B
Docker
5 lines
125 B
Docker
FROM nginx:1.21
|
|
|
|
# 将本地的 build 文件夹内容复制到 Nginx 默认的 web 目录
|
|
COPY build/ /usr/share/nginx/html/
|