From bd94b8b72c30d74aad2af236a2073907cfedd47f Mon Sep 17 00:00:00 2001 From: josedario87 Date: Wed, 4 Jun 2025 22:01:29 -0600 Subject: [PATCH] ahora si --- chat-ui/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chat-ui/Dockerfile b/chat-ui/Dockerfile index 0ec2060..849cca0 100644 --- a/chat-ui/Dockerfile +++ b/chat-ui/Dockerfile @@ -1,8 +1,8 @@ FROM node:18-alpine WORKDIR /app COPY package.json package-lock.json* ./ -RUN npm install --production -COPY . . RUN npm install && npm run build && npm prune --production +COPY . . +RUN npm run build EXPOSE 3000 CMD ["node","dist/server.js"]