KaranN8n commited on
Commit
ae84753
·
verified ·
1 Parent(s): 653bae4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -3
Dockerfile CHANGED
@@ -1,10 +1,19 @@
1
- FROM atendare/evolution-api:v2.1.0
 
 
 
 
 
 
 
 
2
 
3
- # पोर्ट सेट करें
4
  EXPOSE 7860
5
 
6
- # एन्वायर्नमेंट वेरिएबल
7
  ENV PORT=7860
8
 
 
 
 
9
 
10
 
 
1
+ FROM node:20-alpine
2
+
3
+ RUN apk add --no-cache git
4
+
5
+ RUN git clone https://github.com/EvolutionAPI/evolution-api.git /app
6
+
7
+ WORKDIR /app
8
+
9
+ RUN npm install
10
 
 
11
  EXPOSE 7860
12
 
 
13
  ENV PORT=7860
14
 
15
+ CMD ["npm", "start"]
16
+
17
+
18
 
19