Compare commits

...

2 Commits

Author SHA1 Message Date
Nils-Johan Gynther 0922af57a4 Merge branch 'main' of ssh://gitea.gynther.se:2222/nilsjohan/recipe-app
Test Suite / test (24.15.0) (push) Has been cancelled
2026-05-03 21:48:28 +02:00
Nils-Johan Gynther dd74d8b7eb feat(docker): update Node.js version to 24.15.0 in Dockerfile and test workflow 2026-05-03 21:48:25 +02:00
+3 -2
View File
@@ -6,13 +6,14 @@ WORKDIR /app
# Kopiera backend-filer # Kopiera backend-filer
COPY package.json ./ COPY package.json ./
COPY package-lock.json ./
COPY prisma ./prisma COPY prisma ./prisma
COPY src ./src COPY src ./src
COPY tsconfig.json ./ COPY tsconfig.json ./
COPY nest-cli.json ./ COPY nest-cli.json ./
# Köra npm install # Köra npm ci för reproducerbara builds
RUN npm install RUN npm ci
RUN npx prisma generate RUN npx prisma generate
RUN npm test RUN npm test