Install curl for Coolify healthcheck

This commit is contained in:
2026-07-13 13:56:43 +09:00
parent b90bfe35ca
commit 44a4bc1086

View File

@@ -21,7 +21,11 @@ WORKDIR /app
ENV NODE_ENV=production
ENV PORT=3000
RUN apt-get update \
&& apt-get install -y --no-install-recommends curl ca-certificates \
&& rm -rf /var/lib/apt/lists/*
COPY package*.json ./
RUN npm ci --omit=dev && npm cache clean --force
COPY --from=build /app/dist ./dist