This commit is contained in:
Adson Cicilioti 2024-08-03 05:19:54 -03:00 committed by GitHub
commit a1fc827772
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,12 +1,14 @@
# Use a imagem oficial do Node.js 20 como base
FROM node:20-slim
RUN apt update && apt install -y curl wget
WORKDIR /usr/src/app
RUN npm install -g vite
RUN ln -s /usr/local/bin/node /usr/bin/node
ENTRYPOINT ["npx", "evolution-manager", "server", "start"]
ENTRYPOINT ["npx", "-y", "evolution-manager", "server", "start"]
EXPOSE 9615