From fe8a0c966919df4613282eef4fa7f4f198e9c40c Mon Sep 17 00:00:00 2001 From: LucasViniciusTI Date: Thu, 5 Feb 2026 15:40:06 +0000 Subject: [PATCH] Adicionar Dockerfile --- Dockerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4f078a9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM node:24-slim + +WORKDIR /app + +COPY package*.json ./ + +RUN npm install + +COPY . . + +ENV PORT=3000 + +EXPOSE 3000 + +CMD ["npm", "start"]