chore: Refactor
Build and publish / build (push) Successful in 1m50s

This commit is contained in:
Lino Silva
2026-05-12 23:26:48 +01:00
parent 405a959691
commit e6f7b2270b
8 changed files with 603 additions and 58 deletions
+5 -1
View File
@@ -18,9 +18,13 @@ WORKDIR /usr/src/app
# Copy package files
COPY package*.json ./
COPY pnpm-lock.yaml ./
# Install pnpm
RUN npm install -g pnpm
# Install dependencies
RUN npm ci --only=production
RUN pnpm install --frozen-lockfile
# Copy application files
COPY . .