From a3188d039f8f1c79b37bf62e766202dfa413bc0b Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 25 Sep 2025 11:30:00 +0200 Subject: [PATCH] Update start phase configuration in nixpacks.toml --- flask/nixpacks.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flask/nixpacks.toml b/flask/nixpacks.toml index 8537de1..8e77e15 100644 --- a/flask/nixpacks.toml +++ b/flask/nixpacks.toml @@ -1,5 +1,5 @@ [phases.install] commands = ["pip install -r requirements.txt"] -[phases.start] -command = "flask run --host=0.0.0.0 --port=5000" +[start] +cmd = "flask run --host=0.0.0.0 --port=5000"