Cleanup folders & hotfixes on ci/cd
Run Tests on Branches / Backend Tests (push) Failing after 3m0s
Run Tests on Branches / Frontend Tests (push) Successful in 2m10s

This commit is contained in:
Antoni Nuñez Romeu
2026-07-06 16:36:57 +02:00
parent 190b3d163d
commit ed741104ba
363 changed files with 24899 additions and 54423 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
FROM node:18-slim
WORKDIR /app
COPY backend/package*.json ./
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
COPY backend/ .
COPY apps/backend/ .
COPY API/ /API/
RUN mkdir -p /app/data
EXPOSE 3001