From 5cdf0d995b5ad329987ee664eff9bb013fa9d1ab Mon Sep 17 00:00:00 2001 From: Ahmed DCHAR Date: Sun, 2 Nov 2025 20:44:01 +0100 Subject: [PATCH] Ignore local .history folder --- .gitignore | 3 +++ Dockerfile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 870f20c..19c5097 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,6 @@ coverage/ *.tmp *.temp .cache/ + +# Local editor history (keep locally, remove from remote) +.history/ diff --git a/Dockerfile b/Dockerfile index 3ceec0b..53076c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /app COPY package*.json ./ # Install dependencies -RUN npm ci --only=production +RUN npm install # Copy source files COPY . .