Profile and design hotfixes
Run Tests on Branches / Backend Tests (push) Failing after 17s
Run Tests on Branches / Frontend Tests (push) Failing after 17s

This commit is contained in:
Antoni Nuñez Romeu
2026-07-07 01:45:09 +02:00
parent c5417ff787
commit fe22e6ee9b
6 changed files with 66 additions and 10 deletions
+2 -3
View File
@@ -1,8 +1,7 @@
FROM node:18-slim
FROM node:24-alpine
WORKDIR /app
COPY apps/backend/package*.json ./
RUN apt-get update && apt-get install -y --no-install-recommends python3 make g++ && rm -rf /var/lib/apt/lists/*
RUN npm ci --omit=dev
RUN apk add --no-cache python3 make g++ && npm ci --omit=dev
COPY apps/backend/ .
COPY apps/API/ /API/
RUN mkdir -p /app/data