File size: 218 Bytes
3e9328a
 
 
 
4f2deaf
3e9328a
 
 
 
ec3d413
 
 
 
 
 
 
3e9328a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM node:20

WORKDIR /app

RUN git clone https://github.com/EvolutionAPI/evolution-api .

RUN npm install

RUN npm run build

ENV PORT=7860
ENV SERVER_PORT=7860
ENV HOST=0.0.0.0

EXPOSE 7860

CMD ["node", "dist/main"]