Refactor code structure for improved readability and maintainability

هذا الالتزام موجود في:
2026-07-28 00:15:47 +03:00
الأصل 439a31ba93
التزام 04a73e93fa
14 ملفات معدلة مع 461 إضافات و77 حذوفات

13
Q1/Dashboard/Dockerfile Normal file
عرض الملف

@@ -0,0 +1,13 @@
# Minimal static-file server for just the dashboard, so it can be deployed
# as its own service on Ghaymah, separate from the API container.
FROM nginx:alpine
# nginx's default port is 80; most container platforms (Ghaymah included,
# per its port-configuration step) let you pick which port the service
# listens on, so we keep nginx's default here and just set that port
# when creating the service.
COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80