الملفات
tabeleylanding-page/Dockerfile
2026-03-18 20:04:55 +03:00

9 أسطر
170 B
Docker

FROM nginx:1.27-alpine
# Serve the static landing page through Nginx on port 80.
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY . /usr/share/nginx/html
EXPOSE 80