jakaskerl This is real issue
[2025-09-03T05:00:12Z] ERROR: Could not open requirements file: [Errno 2] No such file or directory: '/app/requirements.txt'
Not "Run" . After correction, Error above shows up. (Persistent from long time)
OAK.yaml file:
$ cat oakapp.toml
identifier = "com.example.object-detection.yolo-world"
app_version = "1.1.1"
assign_frontend_port = true
prepare_container = [
{ type = "RUN", command = "apt-get update" },
{ type = "RUN", command = "apt-get install -y python3-pip" },
{ type = "COPY", source = "requirements.txt", target = "requirements.txt" },
{ type = "RUN", command = "pip3 install -r /app/requirements.txt --break-system-packages" },
]
prepare_build_container = []
build_steps = []
entrypoint = ["bash", "-c", "python3 -u /app/main.py"]