From 561267d4cda44109f6b5ed821ebbf5666530a144 Mon Sep 17 00:00:00 2001 From: borja Date: Thu, 27 Mar 2025 00:54:43 +0100 Subject: [PATCH] quita el --production the RUN bun install en el Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8a47b31..c8fadf9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app # Install dependencies first (better layer caching) COPY package.json bun.lock ./ -RUN bun install --production +RUN bun install # Copy only necessary files COPY src/ ./src/ @@ -12,7 +12,7 @@ COPY index.ts ./ # Health check HEALTHCHECK --interval=30s --timeout=3s \ - CMD curl -f http://localhost:3007/health || exit 1 + CMD curl -f http://localhost:3007/health || exit 1 # Server runs on port 3007 by default EXPOSE 3007