From f032c052d107626931acb4eb794fa9b2c8048e8f Mon Sep 17 00:00:00 2001 From: Christian Alfoni Date: Thu, 16 Oct 2025 13:11:30 +0200 Subject: [PATCH] Update Dockerfile instructions for shell installation --- packages/projects-docs/pages/sdk/templates.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/projects-docs/pages/sdk/templates.mdx b/packages/projects-docs/pages/sdk/templates.mdx index 6a17fb77..203bfda5 100644 --- a/packages/projects-docs/pages/sdk/templates.mdx +++ b/packages/projects-docs/pages/sdk/templates.mdx @@ -133,8 +133,8 @@ By default the template uses a universal image which gives you the most common t # ---- Builder: install deps & build ---- FROM node:22-alpine AS builder -# Install zsh (and optionally git, curl, etc.) -RUN apk add --no-cache zsh git curl +# Install zsh and bash (and optionally git, curl, etc.) +RUN apk add --no-cache zsh bash git curl # Enable corepack (pnpm/yarn) if you use it; safe to keep on RUN corepack enable