iamfebin commited on
Commit
40ed212
·
1 Parent(s): 4218b86

Update Dockerfile to use npm install instead of npm ci

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -4,7 +4,7 @@ WORKDIR /app/frontend
4
 
5
  # Copy package files and install dependencies
6
  COPY algospaced-ui/package*.json ./
7
- RUN npm ci
8
 
9
  # Copy the rest of the frontend source code
10
  COPY algospaced-ui/ ./
 
4
 
5
  # Copy package files and install dependencies
6
  COPY algospaced-ui/package*.json ./
7
+ RUN npm install
8
 
9
  # Copy the rest of the frontend source code
10
  COPY algospaced-ui/ ./