assistant-todo/docker/Dockerfile

9 lines
258 B
Docker
Raw Permalink Normal View History

2024-05-07 06:04:12 -04:00
# nginx配置
FROM nginx
COPY nginx.conf /etc/nginx/nginx.conf
2025-08-26 06:59:09 -04:00
COPY outd /usr/share/nginx/html/todo
COPY outd /usr/share/nginx/html
COPY index.html /usr/share/nginx/html/index.html
2025-03-03 06:13:16 -05:00
COPY cert /etc/nginx/cert
EXPOSE 3001 3002
CMD ["nginx", "-g", "daemon off;"]