Compare commits

..

No commits in common. "main" and "2025.05-1" have entirely different histories.

2 changed files with 2 additions and 7 deletions

View file

@ -5,7 +5,7 @@ version: '3'
vars:
REPO: harbor.hq.rosti.cz
REPO_PUBLIC: rosti/runtime
VERSION: 2025.05-1
VERSION: 2025.04-1
BASEIMAGE: debian:bookworm
tasks:

View file

@ -67,10 +67,5 @@ const bodyContent = `<!DOCTYPE html>
console.log(`HTTP webserver running. Access it at: http://localhost:8080/`);
Deno.serve({ port: 8080 }, (_req) => {
return new Response(bodyContent, {
status: 200,
headers: {
"content-type": "text/html; charset=utf-8",
},
});
return new Response(bodyContent);
});