File size: 805 Bytes
a933a65 2c54401 a933a65 2c54401 298184c a933a65 4b8f63a a933a65 2c54401 4b8f63a 2c54401 a933a65 2c54401 a933a65 2c54401 a933a65 4b8f63a 2c54401 4b8f63a 2c54401 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
# ========================
# BASE TOOLS
# ========================
RUN apt update && apt install -y \
curl wget git nano ca-certificates \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# ========================
# NODE + NPM
# ========================
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
apt install -y nodejs
RUN npm install -g npm@latest
# ========================
# GLOBAL TOOLS
# ========================
RUN npm install -g \
typescript \
ts-node \
nodemon \
pm2 \
opencode-ai
# ========================
# SSHX INSTALL
# ========================
RUN curl -sSf https://sshx.io/get | sh
# ========================
# START SSHX (AUTO)
# ========================
CMD ["sshx"] |