🗑️ Remove unused and archived files across multiple directories and update project dependencies in package files

This commit is contained in:
2026-01-28 02:54:35 +00:00
parent 79d52f5d92
commit 1beba26249
170 changed files with 632200 additions and 209 deletions

View File

@@ -0,0 +1,11 @@
# Use nginx alpine for lightweight serving
FROM nginx:alpine
# Copy website files to nginx html directory
COPY index.html /usr/share/nginx/html/
# Expose ports 80 (HTTP) and 443 (HTTPS)
EXPOSE 80 443
# Start nginx
CMD ["nginx", "-g", "daemon off;"]