الملفات
tabeleylanding-page/Dockerfile
2026-04-17 18:13:41 +03:00

9 أسطر
255 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
COPY docker-entrypoint.d/40-render-config.sh /docker-entrypoint.d/40-render-config.sh
EXPOSE 80