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,5 +1,5 @@
|
|
|
1
1
|
# Stage 1: Install dependencies and build the app
|
|
2
|
-
FROM node:
|
|
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:
|
|
17
|
+
FROM node:22-alpine AS runner
|
|
18
18
|
WORKDIR /app
|
|
19
19
|
|
|
20
20
|
ENV NODE_ENV=production
|