| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.ref.name=ubuntu |
| LABEL org.opencontainers.image.version=22.04 |
| ADD file:d025507456f1d7d19195885b1c02a346454d60c9348cbd3be92431f2d7e2666e in / |
| CMD ["/bin/bash"] |
| ENV DEBIAN_FRONTEND=noninteractive |
| RUN /bin/sh -c apt-get update -qq && apt-get install -y -qq --no-install-recommends git curl jq ca-certificates nodejs npm make python3 python3-pip python3-venv && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c pip3 install --no-cache-dir ruff poetry # buildkit |
| RUN /bin/sh -c curl -fsSL https://claude.ai/install.sh | bash || (rm -rf ~/.claude 2>/dev/null && sleep 2 && curl -fsSL https://claude.ai/install.sh | bash) # buildkit |
| ENV PATH=/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| WORKDIR /workspace |
| CMD ["/bin/bash"] |