This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch docker-up
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/docker-up by this push:
new 54e6bd6597 chore: remove unnecessary curl installation from Dockerfile
54e6bd6597 is described below
commit 54e6bd659760ae0a241784d69c84e35f0c51fcab
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Tue Jan 20 16:49:54 2026 +0000
chore: remove unnecessary curl installation from Dockerfile
Node.js healthcheck uses built-in http module, no need for curl.
---
Dockerfile | 3 ---
1 file changed, 3 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index fb9f479f8c..e989ecba37 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -81,9 +81,6 @@ COPY superset-frontend /app/superset-frontend
######################################################################
FROM superset-node-ci AS superset-node
-# Install curl for healthcheck
-RUN apt-get update && apt-get install -y --no-install-recommends curl && rm
-rf /var/lib/apt/lists/*
-
# Build the frontend if not in dev mode
RUN --mount=type=cache,target=/root/.npm \
if [ "${DEV_MODE}" = "false" ]; then \