Add shellcheck, tmux, and jq to dev Dockerfiles

This commit is contained in:
2026-01-10 20:42:44 +08:00
parent 3f6384325a
commit d04243817e
2 changed files with 4 additions and 4 deletions

View File

@@ -2,8 +2,8 @@ FROM fedora:latest
# 1. 基础工具 (包含 Zed 远程运行所需的 procps-ng, tar)
RUN dnf update -y && dnf install -y \
curl git wget unzip procps-ng tar gzip \
gcc gcc-c++ make cmake openssl-devel \
curl git wget unzip procps-ng tar gzip shellcheck vim\
gcc gcc-c++ make cmake openssl-devel tmux jq\
zsh sudo python3 python3-pip openssh-server \
&& dnf clean all