Skip to content

Commit 0470574

Browse files
committed
update dependencies to node 20
1 parent 27ea487 commit 0470574

File tree

8 files changed

+534
-267
lines changed

8 files changed

+534
-267
lines changed

Dockerfile

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build Stage 1
2-
FROM node:20.3-alpine3.18 AS base
2+
FROM node:20.10-alpine3.19 AS base
33

44
WORKDIR /usr/src/app
55

@@ -24,7 +24,7 @@ COPY . .
2424
RUN npm run build
2525

2626
# Build Stage 3 prod
27-
FROM node:20.3-alpine3.18 AS prod-stage
27+
FROM node:20.10-alpine3.19 AS prod-stage
2828

2929
WORKDIR /usr/src/app
3030

@@ -53,6 +53,5 @@ USER node
5353

5454
HEALTHCHECK --interval=12s --timeout=12s --start-period=30s \
5555
CMD node healthcheck.js
56-
5756

5857
CMD [ "node" , "dist/index.js"]

0 commit comments

Comments
 (0)