Ignore local .history folder

This commit is contained in:
Ahmed DCHAR 2025-11-02 20:44:01 +01:00
parent e63001e072
commit 5cdf0d995b
2 changed files with 4 additions and 1 deletions

3
.gitignore vendored
View File

@ -47,3 +47,6 @@ coverage/
*.tmp
*.temp
.cache/
# Local editor history (keep locally, remove from remote)
.history/

View File

@ -9,7 +9,7 @@ WORKDIR /app
COPY package*.json ./
# Install dependencies
RUN npm ci --only=production
RUN npm install
# Copy source files
COPY . .