From b85d0c99836930dd7d2ef9366b9f15f76a8acd23 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 10:55:10 +0000 Subject: [PATCH] Update .codesandbox/Dockerfile --- .codesandbox/Dockerfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .codesandbox/Dockerfile diff --git a/.codesandbox/Dockerfile b/.codesandbox/Dockerfile new file mode 100644 index 0000000..4458358 --- /dev/null +++ b/.codesandbox/Dockerfile @@ -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"] \ No newline at end of file