Block a user
coder-workspace-images (latest)
Published 2026-07-18 14:36:47 +00:00 by almouse
Installation
docker pull git.almou.se/almouse/coder-workspace-images:latestsha256:799cf26cf678d0b51127ae9059b90eaec785ca9dd91e1b23a2f098a17208c0e0
Image Layers
| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:cdc9a547b921f36a32310f732815bbee6c6e4f5bd768ab5d49cdc0aa1b9f4785 in / |
| CMD ["/bin/bash"] |
| ENV DEBIAN_FRONTEND=noninteractive |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends bash build-essential ca-certificates curl git gnupg htop jq locales man-db openssh-client python3 python3-pip python3-venv rsync sudo unzip vim wget && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c locale-gen en_US.UTF-8 # buildkit |
| ENV LANG=en_US.UTF-8 |
| RUN /bin/sh -c curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && apt-get install -y --no-install-recommends nodejs && rm -rf /var/lib/apt/lists/* # buildkit |
| ARG CODE_SERVER_VERSION=4.123.0 |
| RUN |1 CODE_SERVER_VERSION=4.123.0 /bin/sh -c curl -fSL --retry 5 --retry-connrefused --connect-timeout 30 --max-time 900 -o /tmp/code-server.deb "https://github.com/coder/code-server/releases/download/v${CODE_SERVER_VERSION}/code-server_${CODE_SERVER_VERSION}_arm64.deb" && apt-get update && apt-get install -y --no-install-recommends /tmp/code-server.deb && rm -f /tmp/code-server.deb && rm -rf /var/lib/apt/lists/* && code-server --version # buildkit |
| ARG CLAUDE_CODE_VERSION=2.1.214 |
| RUN |2 CODE_SERVER_VERSION=4.123.0 CLAUDE_CODE_VERSION=2.1.214 /bin/sh -c npm install -g "@anthropic-ai/claude-code@${CLAUDE_CODE_VERSION}" # buildkit |
| RUN |2 CODE_SERVER_VERSION=4.123.0 CLAUDE_CODE_VERSION=2.1.214 /bin/sh -c userdel -r ubuntu 2>/dev/null || true && useradd coder --create-home --shell=/bin/bash --uid=1000 --user-group && echo "coder ALL=(ALL) NOPASSWD:ALL" >/etc/sudoers.d/coder && chmod 0440 /etc/sudoers.d/coder # buildkit |
| USER coder |
| WORKDIR /home/coder |
Labels
| Key | Value |
|---|---|
| org.opencontainers.image.version | 24.04 |