Spaces:
Runtime error
Runtime error
File size: 567 Bytes
31da93c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
{
"name": "Room-Tiler-Dev",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
// Forward the Gradio port
"forwardPorts": [7860],
// Automatically start the app when the container boots
"postCreateCommand": "python /workspace/app.py --share --server-name 0.0.0.0",
// VS Code features: Python extension, auto-formatting, etc.
"features": {
"ghcr.io/devcontainers/features/python:1": { "version": "3.10" }
},
// Sets the default shell
"remoteUser": "root"
}
|