chore: pin Node 24.15.0 in Docker and CI
Test Suite / test (24.15.0) (push) Has been cancelled

This commit is contained in:
2026-05-03 21:47:55 +02:00
parent 6278825f0a
commit c2b9c76ce7
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
node-version: [24.x]
node-version: [24.15.0]
steps:
- name: Checkout code
+2 -2
View File
@@ -1,7 +1,7 @@
# Byggas från backend-mappen: docker build -t recipe-api:local .
# Stage 1: Bygg applikationen
FROM node:22-alpine AS builder
FROM node:24.15.0-alpine AS builder
WORKDIR /app
# Kopiera backend-filer
@@ -19,7 +19,7 @@ RUN npm test
RUN npm run build
# Stage 2: Kör applikationen
FROM node:22-alpine AS runner
FROM node:24.15.0-alpine AS runner
WORKDIR /app
ENV NODE_ENV=production