Add Agent evaluation report site

This commit is contained in:
wuyang
2026-07-27 16:44:10 +08:00
parent df475e8d90
commit cd1eacbd9e
15 changed files with 2487 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM nginx:1.29.5-alpine
COPY --chmod=0644 nginx.conf /etc/nginx/conf.d/default.conf
COPY --chmod=0644 index.html /usr/share/nginx/html/index.html
RUN install -d -m 0755 /usr/share/nginx/html/assets
COPY --chmod=0644 assets/styles.css /usr/share/nginx/html/assets/styles.css
COPY --chmod=0644 assets/app.js /usr/share/nginx/html/assets/app.js
EXPOSE 8080
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD wget -q -O /dev/null http://127.0.0.1:8080/health || exit 1