هذا الالتزام موجود في:
2026-03-30 09:07:48 +00:00
الأصل 8c500eb534
التزام 71c90ecff3

12
Dockerfile Normal file
عرض الملف

@@ -0,0 +1,12 @@
# Use the official Nginx Alpine image as base
FROM nginx:alpine
# Copy your index.html to Nginx's default public folder
COPY . /usr/share/nginx/html/
# Expose port 80 (default HTTP port)
EXPOSE 80
# Start Nginx in foreground mode (required for Docker containers)
CMD ["nginx", "-g", "daemon off;"]