> ## Documentation Index
> Fetch the complete documentation index at: https://grounds-docs-platform-architecture.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# dev-container-node

> Node.js container for development in DevSpace environment

Use `dev-container-node` when you need a Node.js image for DevSpace-based development workflows.

This image provides a standard Node.js development environment with the tools Grounds uses in containerized DevSpace workflows.

## Registry

```
ghcr.io/groundsgg/containers/dev-container-node
```

## Features

* **Node.js 24.11.0** on Alpine Linux
* **PNPM package manager** pre-installed
* **Development tools** (wget, curl, nano, bash)
* **DevSpace integration** with startup script

## Usage

Pull the image locally:

```bash theme={null}
docker pull ghcr.io/groundsgg/containers/dev-container-node:latest
```

Use it as a base image in your `Dockerfile`:

```dockerfile theme={null}
FROM ghcr.io/groundsgg/containers/dev-container-node:latest
```

<Check>
  Verify that the image is available locally by running `docker run --rm ghcr.io/groundsgg/containers/dev-container-node:latest node --version`.
</Check>

## Documentation

For implementation details, see the [dev-container-node README](https://github.com/groundsgg/containers/tree/main/dev-container-node) in the repository.
