Implement project structure and documentation for Fog Expedition, including .mcp.json configuration, agent guidelines in AGENTS.md, and detailed project context in PROJECT_CONTEXT.md. Update .gitignore and pnpm-workspace.yaml for new dependencies and workspace management. Introduce CI monitoring skills and scripts for enhanced CI pipeline management.
This commit is contained in:
12
.devcontainer/Dockerfile
Normal file
12
.devcontainer/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm
|
||||
|
||||
# Install pnpm globally as root, then make available to the node user
|
||||
RUN corepack enable && corepack prepare pnpm@latest --activate
|
||||
|
||||
# Switch to non-root user (provided by base image)
|
||||
USER node
|
||||
|
||||
# Pre-create pnpm store directory for cache mounting later if desired
|
||||
RUN mkdir -p /home/node/.local/share/pnpm
|
||||
ENV PNPM_HOME=/home/node/.local/share/pnpm
|
||||
ENV PATH=$PNPM_HOME:$PATH
|
||||
Reference in New Issue
Block a user