diff --git a/Dockerfile b/Dockerfile index e1ce654..8331a65 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ # Use Node.js 18 LTS FROM node:20-alpine -# Install MongoDB CLI tools for import operations -RUN apk add --no-cache mongodb-tools +# Install MongoDB CLI tools and curl for import operations and health checks +RUN apk add --no-cache mongodb-tools curl # Set working directory WORKDIR /app