feat(infra): add docker image build and deploy pipeline (#13)

This commit is contained in:
Stas
2026-03-05 04:01:08 +03:00
committed by GitHub
parent fad17b690f
commit 4ecafcfe23
11 changed files with 293 additions and 4 deletions

16
apps/miniapp/nginx.conf Normal file
View File

@@ -0,0 +1,16 @@
server {
listen 8080;
server_name _;
root /usr/share/nginx/html;
index index.html;
location = /health {
default_type application/json;
return 200 '{"ok":true}';
}
location / {
try_files $uri $uri/ /index.html;
}
}