fix: add curl to runtime image for Coolify health check

This commit is contained in:
BetterHuman
2026-05-06 04:13:30 +00:00
parent ca294ae74e
commit 5b03454bf9
+1 -1
View File
@@ -22,7 +22,7 @@ RUN npm run build
FROM node:20-slim
WORKDIR /app
RUN apt-get update && apt-get install -y openssl --no-install-recommends && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y openssl curl --no-install-recommends && rm -rf /var/lib/apt/lists/*
# Copy backend
COPY --from=backend-build /app/backend/dist ./dist