nahi002 commited on
Commit
28631ce
1 Parent(s): 9876922

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,11 +5,11 @@ FROM node:latest
5
  WORKDIR /app
6
 
7
  # Copy the main.js file from the host to the container
8
- COPY main.js .
9
 
10
  # Install any dependencies required by your main.js file (if any)
11
  # For example, if you have a package.json file, you can uncomment the following line
12
- # COPY package.json .
13
 
14
  # Install dependencies
15
  RUN npm install
 
5
  WORKDIR /app
6
 
7
  # Copy the main.js file from the host to the container
8
+ COPY . .
9
 
10
  # Install any dependencies required by your main.js file (if any)
11
  # For example, if you have a package.json file, you can uncomment the following line
12
+ COPY package.json .
13
 
14
  # Install dependencies
15
  RUN npm install