This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM node:20 | |
| ARG TZ | |
| ENV TZ="$TZ" | |
| ARG CLAUDE_CODE_VERSION=latest | |
| # Install basic development tools and iptables/ipset | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| less \ |
OlderNewer