bardd commited on
Commit
6d40e21
·
verified ·
1 Parent(s): 6043ccf

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -7,12 +7,12 @@ WORKDIR /app
7
  # Copy package.json and package-lock.json (if available)
8
  COPY package*.json ./
9
 
10
- # Install dependencies
11
- RUN npm install
12
-
13
  # Copy the rest of your application code
14
  COPY . .
15
 
 
 
 
16
  # Expose the port your app runs on
17
  EXPOSE 7860
18
 
 
7
  # Copy package.json and package-lock.json (if available)
8
  COPY package*.json ./
9
 
 
 
 
10
  # Copy the rest of your application code
11
  COPY . .
12
 
13
+ # Install dependencies
14
+ RUN npm install
15
+
16
  # Expose the port your app runs on
17
  EXPOSE 7860
18