From 3d40dce76a612dbaff60511f40095899b67cf728 Mon Sep 17 00:00:00 2001 From: Shi Jin Date: Thu, 22 Jun 2023 10:43:12 -0600 Subject: [PATCH] feat: update Dockerfile to include curl (#539) * Update Dockerfile for include curl * missing RUN --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) 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