katsukiai commited on
Commit
82145b0
·
verified ·
1 Parent(s): 116e198

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +19 -12
Dockerfile CHANGED
@@ -1,19 +1,26 @@
1
  #Use the official Node.js image.
2
  FROM node
3
- # Set the working directory.
4
- WORKDIR /usr/src/app
5
 
6
- # Copy package.json and package-lock.json.
7
- COPY package*.json ./
 
8
 
9
- # Install dependencies.
10
- RUN npm install express body-parser
11
 
12
- # Copy the rest of the application code.
13
- COPY . .
14
 
15
- # Expose the port the app runs on.
16
- EXPOSE 3000
17
 
18
- # Command to run the app.
19
- CMD ["node", "app.js"]
 
 
 
 
 
 
 
1
  #Use the official Node.js image.
2
  FROM node
3
+ # Switch to the "node" user
4
+ USER node
5
 
6
+ # Set home to the user's home directory
7
+ ENV HOME=/home/node \
8
+ PATH=/home/node/.local/bin:$PATH
9
 
10
+ # Set the working directory to the user's home directory
11
+ WORKDIR $HOME/app
12
 
13
+ # Moving file to user's home directory
14
+ ADD . $HOME/app
15
 
16
+ # Copy the current directory contents into the container at $HOME/app setting the owner to the user
17
+ COPY --chown=node . $HOME/app
18
 
19
+ # Loading Dependencies
20
+ RUN npm install
21
+
22
+ # Expose application's default port
23
+ EXPOSE 7860
24
+
25
+ # Entry Point
26
+ ENTRYPOINT ["nodejs", "./index.js"]