Update .codesandbox/Dockerfile

This commit is contained in:
kleap-admin 2026-01-15 14:28:17 +00:00
parent d13295757f
commit b3092ff773
1 changed files with 22 additions and 0 deletions

22
.codesandbox/Dockerfile Normal file
View File

@ -0,0 +1,22 @@
# Use CodeSandbox's TypeScript-Node image for full editor support
FROM ghcr.io/codesandbox/devcontainers/typescript-node:latest
# Install zsh and additional tools (required by CodeSandbox)
RUN apt-get update && apt-get install -y \
zsh \
git \
curl \
&& rm -rf /var/lib/apt/lists/*
# Enable corepack for pnpm/yarn support
RUN corepack enable
# Set workspace directory
WORKDIR /workspace
# Environment variables for Next.js
ENV NODE_ENV=development
ENV NEXT_TELEMETRY_DISABLED=1
# Set zsh as default shell (required by CodeSandbox)
SHELL ["/bin/zsh", "-c"]