chore: update itworks pipeline

This commit is contained in:
claude-bot
2026-04-14 07:13:28 +02:00
commit 07ddba7832
2 changed files with 51 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
FROM nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80
+48
View File
@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>It works</title>
<style>
body {
margin: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: #1a1a2e;
font-family: monospace;
}
.box {
text-align: center;
color: #e0e0e0;
}
h1 {
font-size: 4rem;
margin: 0;
color: #00d4aa;
}
p {
font-size: 1.1rem;
color: #888;
margin-top: 1rem;
}
.ts {
margin-top: 2rem;
font-size: 0.8rem;
color: #444;
}
</style>
</head>
<body>
<div class="box">
<h1>It works!</h1>
<p>Pipeline Docker → Harbor → Portainer OK</p>
<div class="ts" id="ts"></div>
</div>
<script>
document.getElementById('ts').textContent = new Date().toISOString();
</script>
</body>
</html>