floor-visualizer / .devcontainer /devcontainer.json
sanjaybora04
commit
31da93c
raw
history blame contribute delete
567 Bytes
{
"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"
}