Compare commits

..

No commits in common. "424eb89c004b632bb526075f847b375c26ba4bec" and "9ea4e093fc809a18d109800c477288b8fe14de8d" have entirely different histories.

2 changed files with 0 additions and 18 deletions

View File

@ -51,7 +51,6 @@ RUN apt-get update -y && apt-get upgrade -y && apt-get install --no-install-reco
npm \
openssh-client \
passwd \
patch \
pipx \
python3 \
python3-pip \

View File

@ -96,23 +96,6 @@ until docker info >/dev/null 2>&1; do
sleep 2
done
# ==== Install keybindings.json to enable terminal editor ====
if ! stat "$HOME_DIR/.local/share/code-server/User/keybindings.json" > /dev/null 2>&1; then
echo "[entrypoint] Creating default keybindings.json"
mkdir -p "$HOME_DIR/.local/share/code-server/User"
cat > "$HOME_DIR/.local/share/code-server/User/keybindings.json" <<EOF
[
{
"key": "ctrl+alt+t",
"command": "workbench.action.createTerminalEditor"
}
]
EOF
chown -R "$DOCKER_USER:$DOCKER_USER" "$HOME_DIR/.local/share/code-server/User"
else
echo "[entrypoint] keybindings.json already exists, skipping creation."
fi
# ==== Install pre-commit ===
if ! command -v pre-commit >/dev/null 2>&1; then
echo "[entrypoint] Installing pre-commit..."