fix Dockerfiles: remove deprecated flags, add .dockerignore

This commit is contained in:
Lizandro Guarnizo
2026-06-03 22:42:29 -05:00
parent ae6bd1f53a
commit 47ad790f79
4 changed files with 9 additions and 7 deletions
+3
View File
@@ -0,0 +1,3 @@
node_modules
.next
.git
+1 -2
View File
@@ -1,8 +1,7 @@
FROM node:22-alpine AS builder
RUN npm install -g npm@latest
WORKDIR /app
COPY package*.json ./
RUN npm ci --ignore-scripts --no-audit --no-fund
RUN npm ci
COPY . .
RUN npm run build