Browse Source

📝 docs(claude): add claude code documentation
- 创建CLAUDE.md文件
- 添加基本使用规范:必须用中文回答

📦 build(docker): add dockerfile with podman support
- 基于d8d-ai-vscode镜像构建
- 安装podman容器工具
- 添加podman版本验证步骤

yourname 2 months ago
parent
commit
7f1b637793
2 changed files with 11 additions and 0 deletions
  1. 2 0
      CLAUDE.md
  2. 9 0
      Dockerfile

+ 2 - 0
CLAUDE.md

@@ -0,0 +1,2 @@
+# Claude Code
+- 必须用中文回答

+ 9 - 0
Dockerfile

@@ -0,0 +1,9 @@
+FROM registry.cn-beijing.aliyuncs.com/d8dcloud/d8d-ai-vscode:playwright-1.55.0-3
+
+# Install podman
+RUN apt-get update && apt-get install -y \
+    podman \
+    && rm -rf /var/lib/apt/lists/*
+
+# Verify podman installation
+RUN podman --version