devusman commited on
Commit
105fbc6
·
1 Parent(s): a3a2ef5
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -5,7 +5,7 @@ FROM node:18-alpine
5
  WORKDIR /app
6
 
7
  # Copy package files and install dependencies first to leverage Docker's layer caching
8
- COPY package.json package-lock.json ./
9
  RUN npm install
10
 
11
  # Copy the rest of your application code
 
5
  WORKDIR /app
6
 
7
  # Copy package files and install dependencies first to leverage Docker's layer caching
8
+ COPY package*.json ./
9
  RUN npm install
10
 
11
  # Copy the rest of your application code