devusman commited on
Commit
2d9fcfd
·
1 Parent(s): cb50218
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -18,7 +18,7 @@ RUN git clone --depth 1 https://huggingface.co/datasets/devusman/waliyan data
18
  # Copy package files and install dependencies first to leverage Docker's layer caching
19
  COPY package.json package-lock.json* ./
20
  # Use 'npm ci' for reproducible builds in production environments
21
- # RUN npm ci
22
 
23
  # Copy the rest of your application code (index.js, views/, etc.)
24
  COPY . .
 
18
  # Copy package files and install dependencies first to leverage Docker's layer caching
19
  COPY package.json package-lock.json* ./
20
  # Use 'npm ci' for reproducible builds in production environments
21
+ RUN npm i
22
 
23
  # Copy the rest of your application code (index.js, views/, etc.)
24
  COPY . .