Open
Description
Request to add native docker support to the project.
I don't want to run this natively on my OS, instead I want an interface where I can run it easily with docker run -it
For example, anthropic's tool-use can be spun like this:
docker run \
-e ANTHROPIC_API_KEY=$ANTHROPIC_API_KEY \
-v $HOME/.anthropic:/home/computeruse/.anthropic \
-p 5900:5900 \
-p 8501:8501 \
-p 6080:6080 \
-p 8080:8080 \
-e WIDTH=1920 \
-e HEIGHT=1080 \
-it ghcr.io/anthropics/anthropic-quickstarts:computer-use-demo-latest
And then I can access a web-ui from http://localhost:8501
.