This commit is contained in:
Jakub Kaniecki
2025-03-30 18:59:15 +02:00
parent 18a019fbc2
commit 1befef102f
11 changed files with 244 additions and 28 deletions

View File

@@ -4,7 +4,7 @@ FROM node:20-alpine as build
WORKDIR /app
# Copy package files
COPY package*.json ./
COPY package.json package-lock.json ./
# Install dependencies
RUN npm ci