Add Dockerfile for Nginx setup and configuration
This commit is contained in:
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM nginx:alpine
|
||||
|
||||
# مكان رفع ملفات HTML/CSS داخل nginx
|
||||
WORKDIR /usr/share/nginx/html
|
||||
|
||||
# نسخ كل ملفات الموقع إلى nginx
|
||||
COPY . .
|
||||
|
||||
# فتح البورت
|
||||
EXPOSE 80
|
||||
Reference in New Issue
Block a user