hello-world for test

This commit is contained in:
2026-08-09 02:32:55 +03:30
parent fef6d44df2
commit 4cd487ea23
3 changed files with 16 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80
+11
View File
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World</title>
</head>
<body>
<h1>Hello World 🚀</h1>
<p>Deployed with Gitea + Jenkins + Docker + Nginx</p>
</body>
</html>
View File