diff --git a/Dockerfile b/Dockerfile index e4db35f91f..4d01212ac2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,9 @@ # Base node image FROM node:19-alpine AS node + +# Install curl for health check +RUN apk --no-cache add curl + COPY . /app # Install dependencies WORKDIR /app