Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### INSTALLER STAGE ###
FROM node:16.20.2-alpine AS installer
FROM node:24.16.0-alpine AS installer

# Create app directory
WORKDIR /usr/src/installer
Expand All @@ -11,7 +11,7 @@ COPY package.json yarn.lock ./
RUN yarn install --production=true

### BUILDER STAGE ###
FROM node:16.20.2-alpine AS builder
FROM node:24.16.0-alpine AS builder

# Create app directory
WORKDIR /usr/src/builder
Expand Down Expand Up @@ -43,7 +43,7 @@ ENTRYPOINT ["yarn", "run", "start:prod"]


### SERVER STAGE ###
FROM node:16.20.2-alpine AS server
FROM node:24.16.0-alpine AS server

LABEL maintainer 'Jonah Snider <jonah@jonah.pw> (jonah.pw)'

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@nestjs/testing": "8.4.7",
"@types/express": "4.17.25",
"@types/jest": "27.5.2",
"@types/node": "14.18.63",
"@types/node": "24.13.2",
"@types/supertest": "2.0.16",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
Expand Down
15 changes: 11 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2928,10 +2928,12 @@
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.19.tgz#5135176a8330b88ece4e9ab1fdcfc0a545b4bab4"
integrity sha512-4nhBPStMK04rruRVtVc6cDqhu7S9GZai0fpXgPXrFpcPX6Xul8xnrjSdGB4KPBVYG/R5+fXWdCM8qBoiULWGPQ==

"@types/node@14.18.63":
version "14.18.63"
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.63.tgz#1788fa8da838dbb5f9ea994b834278205db6ca2b"
integrity sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==
"@types/node@24.13.2":
version "24.13.2"
resolved "https://registry.yarnpkg.com/@types/node/-/node-24.13.2.tgz#3b9b280a7055128359f125eb1067d9a190f39854"
integrity sha512-fRa09kZTgu8o71KFcDjUFuc7F+dEbZYZmkI0mg5YBTRs0yMKjYHsq/c0urDKeDb+D5qVgXOdFcuu+DZPKOITwA==
dependencies:
undici-types "~7.18.0"

"@types/parse-json@^4.0.0":
version "4.0.0"
Expand Down Expand Up @@ -10969,6 +10971,11 @@ unbox-primitive@^1.1.0:
has-symbols "^1.1.0"
which-boxed-primitive "^1.1.1"

undici-types@~7.18.0:
version "7.18.2"
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.18.2.tgz#29357a89e7b7ca4aef3bf0fd3fd0cd73884229e9"
integrity sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==

undici@^7.12.0:
version "7.15.0"
resolved "https://registry.yarnpkg.com/undici/-/undici-7.15.0.tgz#7485007549ad1782b7cab2abfaa1c1aa7b75e106"
Expand Down
Loading