FROM node:22-slim RUN apt-get update && apt-get install -y \ python3 \ make \ g++ \ git \ curl \ && rm -rf /var/lib/apt/lists/* WORKDIR /app RUN npm config set registry https://registry.npmmirror.com RUN npm install -g pnpm@8 RUN git clone https://github.com/jokyo02/deepseek-harness.git WORKDIR /app/deepseek-harness RUN pnpm add -Dw unrun RUN pnpm install RUN pnpm run build ENV PORT=7860 CMD pnpm dsh web --host 0.0.0.0 --port $PORT