Skip to content
This repository was archived by the owner on May 13, 2026. It is now read-only.
Merged
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
2 changes: 1 addition & 1 deletion frontend/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.17.0
22.17.1
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.17.0
FROM node:22.17.1
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm update --location=global npm && npm install
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile.prod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.17.0 AS builder
FROM node:22.17.1 AS builder
WORKDIR /usr/src/app
COPY . .
RUN npm install && npx vite build
Expand Down
Loading