assistant-todo/docker/Dockerfile

9 lines
258 B
Docker

# nginx配置
FROM nginx
COPY nginx.conf /etc/nginx/nginx.conf
COPY outd /usr/share/nginx/html/todo
COPY outd /usr/share/nginx/html
COPY index.html /usr/share/nginx/html/index.html
COPY cert /etc/nginx/cert
EXPOSE 3001 3002
CMD ["nginx", "-g", "daemon off;"]