From 9da8dd2c4f107f251ff85c58b766bacbf57270c9 Mon Sep 17 00:00:00 2001 From: Chaim Date: Mon, 13 Apr 2026 19:27:41 +0000 Subject: [PATCH] Keep curl in Docker image for healthcheck Curl was installed to download Node.js setup script then purged. Coolify needs it for HTTP health checks inside the container. Co-Authored-By: Claude Opus 4.6 (1M context) --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d870594..c346aee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ curl ca-certificates \ && curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ && apt-get install -y --no-install-recommends nodejs \ - && apt-get purge -y curl \ && rm -rf /var/lib/apt/lists/* ENV NODE_ENV=production