feat: build and publish docker image
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m4s

This commit is contained in:
Pihkaal
2025-12-21 14:04:38 +01:00
parent 68ae4b4d2a
commit 19b9f62c46
4 changed files with 57 additions and 0 deletions

View File

@@ -5,6 +5,11 @@ const app = express();
app.use(express.json());
app.post("/", (req, res) => {
console.log(req);
res.sendStatus(200);
});
app.listen(env.PORT, () => {
console.log(`Server running on port ${env.PORT}`);
});