@@ -15,11 +15,11 @@ Run the published full image with all supported agents pre-installed:
1515docker run --rm -p 3000:3000 \
1616 -e ANTHROPIC_API_KEY=" $ANTHROPIC_API_KEY " \
1717 -e OPENAI_API_KEY=" $OPENAI_API_KEY " \
18- rivetdev/sandbox-agent:0.5.0-rc.2 -full \
18+ rivetdev/sandbox-agent:0.4.1 -full \
1919 server --no-token --host 0.0.0.0 --port 3000
2020```
2121
22- The ` 0.5.0-rc.2 -full ` tag pins the exact version. The moving ` full ` tag is also published for contributors who want the latest full image.
22+ The ` 0.4.1 -full ` tag pins the exact version. The moving ` full ` tag is also published for contributors who want the latest full image.
2323
2424If you also want the desktop API inside the container, install desktop dependencies before starting the server:
2525
@@ -31,7 +31,7 @@ docker run --rm -p 3000:3000 \
3131 apt-get update && \
3232 DEBIAN_FRONTEND=noninteractive apt-get install -y curl ca-certificates bash libstdc++6 && \
3333 rm -rf /var/lib/apt/lists/* && \
34- curl -fsSL https://releases.rivet.dev/sandbox-agent/0.5 .x/install.sh | sh && \
34+ curl -fsSL https://releases.rivet.dev/sandbox-agent/0.4 .x/install.sh | sh && \
3535 sandbox-agent install desktop --yes && \
3636 sandbox-agent server --no-token --host 0.0.0.0 --port 3000"
3737```
@@ -52,7 +52,7 @@ const docker = new Docker();
5252const PORT = 3000 ;
5353
5454const container = await docker .createContainer ({
55- Image: " rivetdev/sandbox-agent:0.5.0-rc.2 -full" ,
55+ Image: " rivetdev/sandbox-agent:0.4.1 -full" ,
5656 Cmd: [" server" , " --no-token" , " --host" , " 0.0.0.0" , " --port" , ` ${PORT } ` ],
5757 Env: [
5858 ` ANTHROPIC_API_KEY=${process .env .ANTHROPIC_API_KEY } ` ,
@@ -86,7 +86,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
8686 bash ca-certificates curl git && \
8787 rm -rf /var/lib/apt/lists/*
8888
89- RUN curl -fsSL https://releases.rivet.dev/sandbox-agent/0.5 .x/install.sh | sh && \
89+ RUN curl -fsSL https://releases.rivet.dev/sandbox-agent/0.4 .x/install.sh | sh && \
9090 sandbox-agent install-agent --all
9191
9292RUN useradd -m -s /bin/bash sandbox
0 commit comments