totopo 3.7.0-rc-2 → 3.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -127,27 +127,26 @@ profiles:
|
|
|
127
127
|
description: "Base image: Node.js, git, and AI CLIs"
|
|
128
128
|
dockerfile_hook: |
|
|
129
129
|
# No extras — uses the totopo base image as-is (Node.js + git + AI CLIs).
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
RUN curl -fsSL https://bun.sh/install | bash
|
|
130
|
+
|
|
131
|
+
# Uncomment to enable additional runtimes (Go, Java, Rust, Bun):
|
|
132
|
+
# extended:
|
|
133
|
+
# description: Base image + Go, Java, Rust, and Bun
|
|
134
|
+
# dockerfile_hook: |
|
|
135
|
+
# # Go
|
|
136
|
+
# RUN apt-get update && apt-get install -y --no-install-recommends golang-go && rm -rf /var/lib/apt/lists/*
|
|
137
|
+
# # Java (headless JDK)
|
|
138
|
+
# RUN apt-get update && apt-get install -y --no-install-recommends default-jdk-headless && rm -rf /var/lib/apt/lists/*
|
|
139
|
+
# # Rust (system-wide)
|
|
140
|
+
# ENV RUSTUP_HOME=/usr/local/rustup CARGO_HOME=/usr/local/cargo PATH=/usr/local/cargo/bin:$PATH
|
|
141
|
+
# RUN curl -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path && chmod -R a+rx /usr/local/cargo /usr/local/rustup
|
|
142
|
+
# # Bun
|
|
143
|
+
# ENV BUN_INSTALL=/usr/local/bun PATH=/usr/local/bun/bin:$PATH
|
|
144
|
+
# RUN curl -fsSL https://bun.sh/install | bash
|
|
146
145
|
# Add more profiles here — or ask the agent inside the container to set one up for you.
|
|
147
146
|
|
|
148
147
|
```
|
|
149
148
|
|
|
150
|
-
|
|
149
|
+
New workspaces ship with the `default` profile active and an `extended` profile (Go, Java, Rust, Bun) included as a commented-out template — uncomment to enable. When multiple profiles are defined, totopo prompts you to pick one at session start (the choice is remembered). A profile change triggers a container rebuild on the next session.
|
|
151
150
|
|
|
152
151
|
The base image is defined in [`templates/Dockerfile`](templates/Dockerfile) — inspect it to see what's already included before adding your own layers. To force a fully fresh build (no Docker layer cache), use **Manage Workspace > Clean rebuild**.
|
|
153
152
|
|