diff --git a/Dockerfile b/Dockerfile index 010c40e..c70ffb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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