File size: 563 Bytes
06c11b0
 
0f8a584
 
06c11b0
 
18afa85
06c11b0
18afa85
 
 
 
 
 
 
 
59a743a
18afa85
 
59a743a
 
18afa85
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
title: RoboMME Oracle Planner
sdk: docker
app_port: 7860
---

This Space runs the RoboMME Gradio interface with the Docker SDK.

The container entrypoint is defined by the root `Dockerfile` and launches:

```bash
python3 gradio-web/main.py
```

`app_file` is intentionally not set here because this is a Docker Space; the application entrypoint comes from Docker `CMD`, while `app_port: 7860` is the external port published by the Space.

Local CPU Docker run:

```bash
docker build -t robomme-gradio:cpu .
docker run --rm -p 7860:7860 robomme-gradio:cpu
```