update gh actions

This commit is contained in:
Nicolò Boschi 2025-11-11 13:43:00 +01:00
parent 7960d9fcfc
commit 60243213a7

View file

@ -5,14 +5,14 @@ FROM base AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json package-lock.json ./
COPY memora-control-plane/package.json memora-control-plane/package-lock.json ./
RUN npm ci
# Rebuild the source code only when needed
FROM base AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
COPY memora-control-plane/ .
RUN npm run build