Spaces:
Sleeping
Sleeping
update
Browse files- 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 |
-
|
| 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 . .
|