This commit is contained in:
A 2026-06-08 10:17:30 +02:00 committed by GitHub
commit c8d3e442e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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"]