ruv commited on
Commit
16b96b3
·
verified ·
1 Parent(s): 6511cb3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -18,7 +18,8 @@ RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
18
  COPY package*.json ./
19
 
20
  # Install the Node.js dependencies
21
- RUN npm ci --only=production
 
22
 
23
  # Copy the Flask application code to the working directory
24
  COPY . .
 
18
  COPY package*.json ./
19
 
20
  # Install the Node.js dependencies
21
+ # RUN npm ci --only=production
22
+ RUN npm install
23
 
24
  # Copy the Flask application code to the working directory
25
  COPY . .