mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-07-10 01:28:35 +00:00
Merge 720dde6481 into fe137e426e
This commit is contained in:
commit
c8d3e442e7
1 changed files with 17 additions and 0 deletions
17
sh/docker/t3code.Dockerfile
Normal file
17
sh/docker/t3code.Dockerfile
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
FROM ubuntu:24.04
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# Base packages
|
||||
RUN apt-get update -y && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
curl git ca-certificates build-essential unzip zsh && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Node.js 22 via n
|
||||
RUN curl --proto '=https' -fsSL https://raw.githubusercontent.com/tj/n/master/bin/n | bash -s install 22
|
||||
|
||||
# T3 Code (web GUI wrapping Claude Code and Codex via browser interface)
|
||||
RUN npm install -g t3
|
||||
|
||||
CMD ["/bin/sleep", "inf"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue