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 -2
View File
@@ -1,4 +1,4 @@
FROM node:20-alpine AS build
FROM node:24-alpine AS build
ARG VITE_FARO_ENDPOINT
ARG VITE_FARO_APP_NAME=farmaclic-frontend
ARG VITE_FARO_ENV=production
@@ -9,7 +9,7 @@ ENV VITE_FARO_ENV=$VITE_FARO_ENV
ENV VITE_FARO_APP_VERSION=$VITE_FARO_APP_VERSION
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm ci --legacy-peer-deps
COPY . .
RUN npm run build