الملفات
2026-07-26 19:57:48 +03:00

9 أسطر
205 B
Docker

FROM nginx:alpine
# Copy frontend files to Nginx's web root
COPY index.html /usr/share/nginx/html/
COPY style.css /usr/share/nginx/html/
COPY script.js /usr/share/nginx/html/
# Expose HTTP port
EXPOSE 80