Add Dockerfile for Nginx setup and configuration

This commit is contained in:
usifk
2025-11-23 15:13:31 +02:00
parent 8b7817841c
commit 6e3e7b7141
2 changed files with 10 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM nginx:alpine
# مكان رفع ملفات HTML/CSS داخل nginx
WORKDIR /usr/share/nginx/html
# نسخ كل ملفات الموقع إلى nginx
COPY . .
# فتح البورت
EXPOSE 80