add: curl and wget packages to suppot healtchecks

This commit is contained in:
Adson Cicilioti 2024-08-03 03:52:56 -03:00
parent b1747d5df1
commit 165b70e7ed

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", "evolution-manager", "server", "start"]
EXPOSE 9615