Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions images/dev-desktop/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ ARG CODEX_VERSION=0.145.0
ARG GEMINI_CLI_VERSION=0.52.0
# renovate: datasource=npm depName=opencode-ai
ARG OPENCODE_VERSION=1.18.5
# renovate: datasource=github-releases depName=herdrdev/herdr extractVersion=^v(?<version>.+)$
ARG HERDR_VERSION=0.8.0

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down Expand Up @@ -81,6 +83,12 @@ RUN npm install -g --no-fund --no-audit \
&& gemini --version \
&& opencode --version

# herdr ships raw per-arch binaries as release assets, not a package repo.
RUN curl -fsSL -o /usr/local/bin/herdr \
"https://github.com/herdrdev/herdr/releases/download/v${HERDR_VERSION}/herdr-linux-x86_64" \
&& chmod 0755 /usr/local/bin/herdr \
&& herdr --version

# video/render gate /dev/dri, input gates /dev/uinput for Moonlight input injection.
RUN groupadd --gid 1001 dev \
&& useradd --uid 1001 --gid dev --create-home --shell /usr/bin/zsh dev \
Expand Down
4 changes: 2 additions & 2 deletions images/dev-desktop/metadata.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: dev-desktop
description: Arch Linux dev workstation with Hyprland streamed over Sunshine/Moonlight
version: 1.0.0
version: 1.1.0
platforms:
# archlinux has no official arm64 image, so this image is amd64-only.
- linux/amd64
test: Hyprland --version && sunshine --version && claude --version && codex --version && gemini --version && opencode --version && kubectl version --client && helm version --short && terraform version && tofu version && node --version && python3 --version && go version && uv --version && rg --version && nvim --version && chezmoi --version && test "$(whoami)" = dev
test: Hyprland --version && sunshine --version && claude --version && codex --version && gemini --version && opencode --version && herdr --version && kubectl version --client && helm version --short && terraform version && tofu version && node --version && python3 --version && go version && uv --version && rg --version && nvim --version && chezmoi --version && test "$(whoami)" = dev