Skip to content

Commit

Permalink
Update Node.js to v23
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 25, 2024
1 parent 8e2e3c8 commit 31f43ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Builder stage.
# This state compile our TypeScript to get the JavaScript code
#
FROM node:20.10.0 AS builder
FROM node:23.1.0 AS builder

WORKDIR /usr/src/app

Expand All @@ -16,15 +16,15 @@ RUN npm ci --quiet && npm run build
# This state compile get back the JavaScript code from builder stage
# It will also install the production package only
#
FROM node:20.10.0-alpine as production-builder
FROM node:23.1.0-alpine as production-builder

WORKDIR /app
ENV NODE_ENV=production

COPY package*.json ./
RUN npm ci --quiet --only=production

FROM node:20.10.0-alpine as production
FROM node:23.1.0-alpine as production

WORKDIR /app
ENV NODE_ENV=production
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dockerfile for development only
FROM node:20.10.0
FROM node:23.1.0
WORKDIR /app

## Add the wait script to the image
Expand Down

0 comments on commit 31f43ab

Please sign in to comment.