ngoctuanai commited on
Commit
1b087e3
·
verified ·
1 Parent(s): c4bcdaf

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -5
Dockerfile CHANGED
@@ -1,15 +1,16 @@
1
  FROM node:18
2
 
3
- WORKDIR /ChatGPT-Plugins
 
 
 
 
 
4
 
5
- RUN apt-get update && apt-get install -y
6
- RUN git clone https://github.com/chokiproai/ChatGPT-Plugins.git
7
  RUN npm install --legacy-peer-deps
8
 
9
  ENV PORT=3000
10
 
11
- # Mở cổng để truy cập ứng dụng
12
  EXPOSE 3000
13
 
14
- # Khởi chạy ứng dụng
15
  CMD ["npm", "start"]
 
1
  FROM node:18
2
 
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y git
6
+ RUN git clone https://github.com/chokiproai/ChatGPT-Plugins.git /app
7
+
8
+ WORKDIR /app
9
 
 
 
10
  RUN npm install --legacy-peer-deps
11
 
12
  ENV PORT=3000
13
 
 
14
  EXPOSE 3000
15
 
 
16
  CMD ["npm", "start"]