refactor(docker): update Dockerfile and docker-compose for improved build process and add health check API

This commit is contained in:
ga1az
2025-06-24 23:44:06 -04:00
parent bc28ce09cb
commit 547f566fc2
4 changed files with 35 additions and 15 deletions

View File

@ -0,0 +1,5 @@
import { NextRequest } from "next/server";
export async function GET(request: NextRequest) {
return new Response("OK", { status: 200 });
}