From e0d8849bd1ca862185bf877d48791b873814f311 Mon Sep 17 00:00:00 2001 From: sherl Date: Tue, 20 Jan 2026 22:29:28 +0100 Subject: [PATCH] fix: Docker fixes --- .dockerignore | 3 ++- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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