evolution-api / Dockerfile
kwosky514's picture
Update Dockerfile
4f2deaf verified
raw
history blame contribute delete
218 Bytes
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"]