⚙️
Verifieddeployment0 installs

Docker Node Config

Dockerfile configuration for Node.js apps

Configuration

{
  "port": 3000,
  "workdir": "/app",
  "baseImage": "node:20-alpine",
  "buildSteps": [
    "COPY package*.json ./",
    "RUN npm ci",
    "COPY . .",
    "RUN npm run build"
  ]
}

Installation

Via StackShack CLI

npx stackshack install docker-node

Manual Configuration

Add this configuration to your claude_settings file:

{
  "port": 3000,
  "workdir": "/app",
  "baseImage": "node:20-alpine",
  "buildSteps": [
    "COPY package*.json ./",
    "RUN npm ci",
    "COPY . .",
    "RUN npm run build"
  ]
}

Tags

#docker#node#deployment

Quick Actions

Stats

Installs0
Categorydeployment
Statuspublished

Need Help?

Check our documentation or reach out to the community.

Get Support

More deployment Settings