Skip to content

Commit cc5b563

Browse files
authored
Merge pull request #4 from Dipendra2003/dependabot/docker/node-24.1-alpine3.20
Bump node from 20.18-alpine3.20 to 24.1-alpine3.20
2 parents aff5b4e + 272f592 commit cc5b563

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# ---------------------------------------------------------------------------
1111
# Stage 1: Install Dependencies
1212
# ---------------------------------------------------------------------------
13-
FROM node:20.18-alpine3.20 AS deps
13+
FROM node:24.1-alpine3.20 AS deps
1414

1515
# bcrypt requires native build tools (python3, make, g++)
1616
RUN apk add --no-cache python3 make g++
@@ -27,7 +27,7 @@ RUN --mount=type=cache,target=/root/.npm npm ci --ignore-scripts
2727
# ---------------------------------------------------------------------------
2828
# Stage 2: Build Application
2929
# ---------------------------------------------------------------------------
30-
FROM node:20.18-alpine3.20 AS build
30+
FROM node:24.1-alpine3.20 AS build
3131

3232
WORKDIR /app
3333

@@ -41,7 +41,7 @@ RUN npm run build
4141
# ---------------------------------------------------------------------------
4242
# Stage 3: Production Runtime
4343
# ---------------------------------------------------------------------------
44-
FROM node:20.18-alpine3.20 AS runtime
44+
FROM node:24.1-alpine3.20 AS runtime
4545

4646
# Install runtime utilities:
4747
# curl — for health check script

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Source code is volume-mounted, not baked into the image.
77
# =============================================================================
88

9-
FROM node:20.18-alpine3.20
9+
FROM node:24.1-alpine3.20
1010

1111
# Install build tools for bcrypt + runtime utilities
1212
RUN apk add --no-cache python3 make g++ curl netcat-openbsd

0 commit comments

Comments
 (0)