# Utiliser une image de base légère FROM nginx:alpine # Copier la page HTML dans le répertoire approprié de Nginx COPY index.html /usr/share/nginx/html/ COPY styles.css /usr/share/nginx/html/ COPY app-ads.txt /usr/share/nginx/html/ # Exposer le port 80 EXPOSE 80 # Démarrer Nginx CMD ["nginx", "-g", "daemon off;"]