XciD HF Staff commited on
Commit
d8ee57f
·
verified ·
1 Parent(s): 61c1eb5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -7,7 +7,7 @@ WORKDIR /usr/src/app
7
  # Copy the rest of the application files to the container
8
  COPY --chown=1000 . .
9
 
10
- RUN npm install && npm run build
11
 
12
  # Expose the application port (assuming your app runs on port 3000)
13
  EXPOSE 3000
 
7
  # Copy the rest of the application files to the container
8
  COPY --chown=1000 . .
9
 
10
+ RUN npm ci && npm run build
11
 
12
  # Expose the application port (assuming your app runs on port 3000)
13
  EXPOSE 3000