Add Docker and Gitea Actions CI/CD pipeline
CI / build-and-push (push) Successful in 1m10s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-24 18:27:07 -04:00
parent 938df33789
commit 68540ebcf9
10 changed files with 154 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location /assets/ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}