Initial commit: site statique Dockerisé avec nginx

This commit is contained in:
2025-12-08 09:42:10 +00:00
commit 984ecf5d6c
4 changed files with 168 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM nginx:alpine
# Copy static assets to nginx default html folder
COPY index.html /usr/share/nginx/html/index.html
# Expose port 80
EXPOSE 80
# Start nginx in foreground
CMD ["nginx", "-g", "daemon off;"]