Create Dockerfile

هذا الالتزام موجود في:
mal-sh
2025-04-26 05:44:16 -04:00
ملتزم من قبل GitHub
الأصل 5bbdabce8f
التزام 0ee82d4108

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

@@ -0,0 +1,11 @@
# Use the official Nginx Alpine image as base
FROM nginx:alpine
# Copy your index.html to Nginx's default public folder
COPY index.html /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;"]