Skip to content

Commit

Permalink
chore(deps): update node.js to v22
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 29, 2024
1 parent 1e2b2ba commit fb2de56
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions templates/koa-ts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-slim as BUILDER
FROM node:22-slim as BUILDER

WORKDIR /home/app

Expand All @@ -14,7 +14,7 @@ ENV NODE_ENV production
RUN npm prune --production

# A slimmed down runner image with only the bare necessities
FROM node:18-slim AS runner
FROM node:22-slim AS runner
WORKDIR /home/app
COPY --from=BUILDER /home/app/node_modules ./node_modules
COPY --from=BUILDER /home/app/package* ./
Expand Down
2 changes: 1 addition & 1 deletion templates/react-ts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-slim AS builder
FROM node:22-slim AS builder

WORKDIR /app
ADD package*.json .
Expand Down
2 changes: 1 addition & 1 deletion templates/react/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-slim AS builder
FROM node:22-slim AS builder

WORKDIR /app
ADD package*.json .
Expand Down

0 comments on commit fb2de56

Please sign in to comment.