Files
NxMesh-old/.devcontainer/Dockerfile
GW_MC 43b2e44d95 Add project structure and roadmap documentation
- Created `project-structure.md` to outline the directory layout, crate dependencies, design principles, module guidelines, and naming conventions for the NxMesh codebase.
- Introduced `roadmap.md` detailing the development phases, milestones, tasks, deliverables, and resource requirements for the NxMesh project, spanning from foundational setup to enterprise features.
2026-03-03 04:13:31 +00:00

21 lines
582 B
Docker

FROM mcr.microsoft.com/devcontainers/base:ubuntu-22.04
# Avoid prompts from apt
ENV DEBIAN_FRONTEND=noninteractive
# Install system dependencies that don't have devcontainer features
RUN apt-get update && apt-get install -y \
pkg-config \
libssl-dev \
postgresql-client \
protobuf-compiler \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /workspace
# Note: Rust, Bun, and just are installed via devcontainer features
# cargo-binstall, cargo-watch, cargo-edit, and sea-orm-cli are installed via postCreateCommand
CMD [ "sleep", "infinity" ]