claude-web-remote (latest)
Published 2026-06-28 23:33:55 -04:00 by walkention
Installation
docker pull forgejo.aydaen.com/walkention/claude-web-remote:latestsha256:7735f42633f7007f9b46d64bd10b8fc060a3cbb5353f5021ed53142192d392b0Image layers
| # debian.sh --arch 'amd64' out/ 'forky' '@1782172800' |
| ARG TZ=UTC |
| ENV TZ=UTC |
| RUN |1 TZ=UTC /bin/sh -c apt-get update && apt-get install -y --no-install-recommends bash ca-certificates curl g++ git gosu jq libgcc-s1 libstdc++6 make nginx nodejs npm openssl passwd python3 ripgrep sudo supervisor xclip && rm -rf /var/lib/apt/lists/* # buildkit |
| ARG CLAUDE_CODE_CHANNEL=latest |
| RUN |2 TZ=UTC CLAUDE_CODE_CHANNEL=latest /bin/sh -c curl -fsSL https://claude.ai/install.sh | bash -s "${CLAUDE_CODE_CHANNEL}" && test -x /root/.local/bin/claude && ln -sf /root/.local/bin/claude /usr/local/bin/claude && chmod 755 /root && chmod -R a+rX /root/.local # buildkit |
| ENV PATH=/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| ARG XTERM_VERSION=5.3.0 |
| ARG XTERM_FIT_VERSION=0.8.0 |
| COPY webpanel /srv/panel # buildkit |
| RUN |4 TZ=UTC CLAUDE_CODE_CHANNEL=latest XTERM_VERSION=5.3.0 XTERM_FIT_VERSION=0.8.0 /bin/sh -c cd /srv/panel && npm install --omit=dev --no-audit --no-fund && mkdir -p public/vendor && curl -fsSL "https://unpkg.com/xterm@${XTERM_VERSION}/lib/xterm.js" -o public/vendor/xterm.js && curl -fsSL "https://unpkg.com/xterm@${XTERM_VERSION}/css/xterm.css" -o public/vendor/xterm.css && curl -fsSL "https://unpkg.com/xterm-addon-fit@${XTERM_FIT_VERSION}/lib/xterm-addon-fit.js" -o public/vendor/xterm-addon-fit.js && chmod -R a+rX /srv/panel # buildkit |
| COPY nginx.conf /etc/nginx/nginx.conf # buildkit |
| COPY supervisord.conf /etc/supervisor/conf.d/panel.conf # buildkit |
| ENV CLAUDE_CONFIG_DIR=/claude |
| RUN |4 TZ=UTC CLAUDE_CODE_CHANNEL=latest XTERM_VERSION=5.3.0 XTERM_FIT_VERSION=0.8.0 /bin/sh -c mkdir -p /claude /workspace # buildkit |
| ENV USE_BUILTIN_RIPGREP=0 |
| ENV DISABLE_AUTOUPDATER=1 |
| ENV DISABLE_TELEMETRY=1 |
| ENV DISABLE_ERROR_REPORTING=1 |
| ENV TERM=xterm-256color |
| COPY entrypoint.sh /usr/local/bin/entrypoint.sh # buildkit |
| RUN |4 TZ=UTC CLAUDE_CODE_CHANNEL=latest XTERM_VERSION=5.3.0 XTERM_FIT_VERSION=0.8.0 /bin/sh -c chmod +x /usr/local/bin/entrypoint.sh # buildkit |
| WORKDIR /workspace |
| ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] |
| CMD ["panel"] |