Skip to content

Commit 692e8f3

Browse files
authored
Use default base image for Archil template (#223)
Switch from the code-interpreter-v1 template to .fromBaseImage() so the Archil example builds on the default E2B base image.
1 parent dd8323d commit 692e8f3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/storage/archil.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Build a template with the `archil` CLI preinstalled. The Archil package depends
2222

2323
```ts JavaScript & TypeScript
2424
const template = Template()
25-
.fromTemplate("code-interpreter-v1")
25+
.fromBaseImage()
2626
.aptInstall(["libfuse2", "ca-certificates"])
2727
.runCmd("curl -fsSL https://archil.com/install | sh")
2828
```
@@ -31,7 +31,7 @@ const template = Template()
3131
```python Python
3232
template = (
3333
Template()
34-
.from_template("code-interpreter-v1")
34+
.from_base_image()
3535
.apt_install(["libfuse2", "ca-certificates"])
3636
.run_cmd("curl -fsSL https://archil.com/install | sh")
3737
)

0 commit comments

Comments
 (0)