deploy-stack 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deploy-stack",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Provision production-ready AWS infrastructure and CI/CD pipelines in seconds.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,5 +1,5 @@
1
1
  # Stage 1: Install dependencies and build the app
2
- FROM node:20-alpine AS builder
2
+ FROM node:22-alpine AS builder
3
3
  WORKDIR /app
4
4
 
5
5
  # Copy package files and install dependencies
@@ -14,7 +14,7 @@ COPY . .
14
14
  RUN npm run build
15
15
 
16
16
  # Stage 2: Production environment
17
- FROM node:20-alpine AS runner
17
+ FROM node:22-alpine AS runner
18
18
  WORKDIR /app
19
19
 
20
20
  ENV NODE_ENV=production
@@ -1,4 +1,4 @@
1
- FROM node:20-alpine
1
+ FROM node:22-alpine
2
2
 
3
3
  # 1. Set production environment (optimizes Node and prevents dev dependencies)
4
4
  ENV NODE_ENV=production
@@ -1,5 +1,5 @@
1
1
  # STAGE 1: Build the static assets
2
- FROM node:20-alpine AS builder
2
+ FROM node:22-alpine AS builder
3
3
  WORKDIR /app
4
4
 
5
5
  COPY package*.json ./