remove healthcheck

This commit is contained in:
Nomi Nonsense (Nonszy) 2025-11-22 18:02:21 +08:00
parent 573b6202be
commit 6510022716

View File

@ -15,8 +15,6 @@ RUN yarn build
FROM node:20-alpine AS runner
RUN apk add --no-cache curl iproute2
WORKDIR /app
RUN addgroup --system --gid 1001 nodejs
@ -32,9 +30,4 @@ COPY --from=builder /app/.next/static ./.next/static
EXPOSE 3000
#RUN ss -tuln
#HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=5 \
# CMD curl -f http://localhost:3000 || exit 1
CMD ["node", "server.js"]