good version for 算法注册

This commit is contained in:
2026-02-15 21:23:28 +08:00
parent 3c03777b97
commit 62ea5d36a5
115 changed files with 9566 additions and 1576 deletions

11
api-gateway/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM nginx:latest
# 复制nginx配置文件
COPY nginx.conf /etc/nginx/nginx.conf
COPY ai-services.conf /etc/nginx/conf.d/ai-services.conf
# 暴露端口
EXPOSE 80
# 启动nginx
CMD ["nginx", "-g", "daemon off;"]