diff --git a/.dockerignore b/.dockerignore index 63dae31..df7219d 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,4 @@ .env */.env -*.md \ No newline at end of file +build +node_modules diff --git a/Dockerfile b/Dockerfile index af58f1a..55c5869 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM node:24-trixie-slim AS builder WORKDIR /app COPY package*.json ./ -RUN npm ci --only=production && npm cache clean --force +RUN npm ci && npm cache clean --force COPY . . FROM node:24-trixie-slim AS production