-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoakapp.toml
More file actions
26 lines (22 loc) · 834 Bytes
/
oakapp.toml
File metadata and controls
26 lines (22 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
identifier = "com.example.pose-estimation.hand-pose"
entrypoint = ["bash", "-c", "/usr/bin/runsvdir -P /etc/service"]
app_version = "1.0.2"
assign_frontend_port = true
prepare_container = [
{ type = "COPY", source = "./requirements.txt", target = "./requirements.txt" },
{ type = "RUN", command = "python3.12 -m pip install -r /app/requirements.txt --break-system-packages"}
]
build_steps = [
"mkdir -p /etc/service/backend",
"cp /app/backend-run.sh /etc/service/backend/run",
"chmod +x /etc/service/backend/run",
]
depthai_models = { yaml_path = "./depthai_models" }
[base_image]
api_url = "https://registry-1.docker.io"
service = "registry.docker.io"
oauth_url = "https://auth.docker.io/token"
auth_type = "repository"
auth_name = "luxonis/oakapp-base"
image_name = "luxonis/oakapp-base"
image_tag = "1.2.6"