FROM nginx:alpine # 只把 MkDocs 构建产物(site/)放进 Nginx COPY site/ /usr/share/nginx/html/ COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80