a8c884d23b
Deploy Resume / deploy (push) Successful in 20s
- 新增 soe/index.html、soe/resume.css(复制主简历及其样式,样式独立维护) - nginx.conf 注册 /soe/ 路由 - Dockerfile 增加 COPY soe/ Co-Authored-By: Claude Code <noreply@anthropic.com>
19 lines
431 B
Docker
19 lines
431 B
Docker
FROM nginx:alpine
|
|
|
|
# 复制 Nginx 配置
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# 复制静态资源
|
|
COPY css/ /usr/share/nginx/html/css/
|
|
COPY img/ /usr/share/nginx/html/img/
|
|
COPY resume/ /usr/share/nginx/html/resume/
|
|
COPY resume.txt /usr/share/nginx/html/resume.txt
|
|
COPY other/ /usr/share/nginx/html/other/
|
|
COPY soe/ /usr/share/nginx/html/soe/
|
|
|
|
# 暴露端口
|
|
EXPOSE 80
|
|
|
|
# 启动 Nginx
|
|
CMD ["nginx", "-g", "daemon off;"]
|