From e85a9e47d11b8e7d486efa7cc11fd9d5db8f8ebc Mon Sep 17 00:00:00 2001 From: borja Date: Fri, 5 Sep 2025 23:36:19 +0200 Subject: [PATCH] =?UTF-8?q?a=C3=B1ade=20sqlite3=20a=20la=20lista=20de=20lo?= =?UTF-8?q?=20que=20instala=20la=20imagen=20para=20poder=20trastear=20la?= =?UTF-8?q?=20base=20de=20datos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6795ded..5fd2580 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM oven/bun:1.1 as base # Install basic debugging tools -RUN apt-get update && apt-get install -y curl netcat +RUN apt-get update && apt-get install -y curl netcat sqlite3 WORKDIR /app # Create data directory with proper permissions @@ -18,7 +18,7 @@ COPY index.ts ./ # More forgiving health check during debugging HEALTHCHECK --start-period=30s --interval=30s --timeout=3s --retries=3 \ - CMD curl -f http://localhost:${PORT:-3007}/health || exit 0 + CMD curl -f http://localhost:${PORT:-3007}/health || exit 0 # Server runs on port from environment variable EXPOSE ${PORT:-3007}