Dockerize web app
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-06-23 18:38:26 +02:00
parent eaa06029bb
commit f6dbf489ad
5 changed files with 40 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
events { }
http {
include mime.types;
server {
listen 80;
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html =404;
}
}
}