chore: supress confirmation prompt

This commit is contained in:
Adson Cicilioti 2024-08-03 04:34:38 -03:00
parent 97f0dfd2be
commit b5cfd34711

View File

@ -1,7 +1,7 @@
# Use a imagem oficial do Node.js 20 como base
FROM node:20-slim
# RUN apt update && apt install -y curl wget
RUN apt update && apt install -y curl wget
WORKDIR /usr/src/app
@ -9,6 +9,6 @@ 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