e6d6f62da6
- Added vim and nano to the Dockerfile for improved editing capabilities. - Bumped version to 0.5.33 in config.yaml. - Set OpenClaw directories in run.sh to ensure persistence across updates.
96 lines
3.3 KiB
Docker
96 lines
3.3 KiB
Docker
ARG BUILD_FROM
|
|
FROM ${BUILD_FROM}
|
|
|
|
# Base image is Debian Bookworm (glibc). This avoids musl-related native module issues
|
|
# that occur on Alpine (e.g. clipboard, node-llama-cpp).
|
|
|
|
# Install base packages (without nodejs/npm - we'll get Node 22 from NodeSource)
|
|
# build-essential provides gcc/cc needed by Homebrew for OpenClaw's brew-managed dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
bash \
|
|
git \
|
|
openssh-client \
|
|
ca-certificates \
|
|
tzdata \
|
|
jq \
|
|
curl \
|
|
tar \
|
|
xz-utils \
|
|
file \
|
|
python3 \
|
|
nginx \
|
|
gnupg \
|
|
build-essential \
|
|
sudo \
|
|
vim \
|
|
nano \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Node.js 22 LTS from NodeSource (Debian Bookworm ships Node 18, but OpenClaw requires 20+)
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
|
|
&& apt-get install -y nodejs \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install ttyd (web terminal) - not in Debian repos, download binary
|
|
# Docker TARGETARCH: amd64, arm64, arm/v7 → ttyd filenames: x86_64, aarch64, armhf
|
|
ARG TARGETARCH
|
|
RUN ARCH=$(echo ${TARGETARCH:-$(dpkg --print-architecture)} | sed 's|arm64|aarch64|;s|arm/v7|armhf|;s|armv7|armhf|;s|amd64|x86_64|') \
|
|
&& echo "Downloading ttyd for arch: ${ARCH}" \
|
|
&& curl -fsSL "https://github.com/tsl0922/ttyd/releases/download/1.7.7/ttyd.${ARCH}" -o /usr/local/bin/ttyd \
|
|
&& chmod +x /usr/local/bin/ttyd
|
|
|
|
RUN node -v && npm -v
|
|
|
|
# Install Chromium for website automation tasks
|
|
# Includes necessary dependencies for headless browser operation
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
chromium \
|
|
chromium-driver \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Homebrew (Linuxbrew) for OpenClaw skill dependencies
|
|
# Homebrew is required for installing CLI tools like gemini, aider, etc.
|
|
ENV HOMEBREW_NO_AUTO_UPDATE=1 \
|
|
HOMEBREW_NO_INSTALL_CLEANUP=1 \
|
|
HOMEBREW_NO_ANALYTICS=1
|
|
|
|
RUN useradd -m -s /bin/bash linuxbrew \
|
|
&& mkdir -p /home/linuxbrew/.linuxbrew \
|
|
&& chown -R linuxbrew:linuxbrew /home/linuxbrew
|
|
|
|
USER linuxbrew
|
|
RUN /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" \
|
|
&& cd /home/linuxbrew/.linuxbrew/Homebrew \
|
|
&& git config --global --add safe.directory /home/linuxbrew/.linuxbrew/Homebrew \
|
|
&& /home/linuxbrew/.linuxbrew/bin/brew update --force
|
|
USER root
|
|
|
|
# Add Homebrew to PATH for all users (wrapper comes first to intercept root calls)
|
|
ENV PATH="/usr/local/bin:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:${PATH}"
|
|
|
|
# Copy brew wrapper that allows root to run brew by delegating to linuxbrew user
|
|
COPY brew-wrapper.sh /usr/local/bin/brew
|
|
RUN chmod +x /usr/local/bin/brew
|
|
|
|
# Verify brew is available and install gcc (needed for compiling some brew packages)
|
|
# Must run as linuxbrew user - Homebrew refuses to run as root
|
|
USER linuxbrew
|
|
RUN /home/linuxbrew/.linuxbrew/bin/brew --version && /home/linuxbrew/.linuxbrew/bin/brew install gcc
|
|
USER root
|
|
|
|
# Install OpenClaw globally
|
|
RUN npm config set fund false && npm config set audit false \
|
|
&& npm install -g openclaw@2026.2.2-3
|
|
|
|
COPY run.sh /run.sh
|
|
COPY oc_config_helper.py /oc_config_helper.py
|
|
COPY nginx.conf.tpl /etc/nginx/nginx.conf.tpl
|
|
COPY landing.html.tpl /etc/nginx/landing.html.tpl
|
|
RUN chmod +x /run.sh /oc_config_helper.py \
|
|
&& mkdir -p /run/nginx
|
|
|
|
CMD [ "/run.sh" ]
|