From cf44f483f431249c8b8ea52f603f46730370369a Mon Sep 17 00:00:00 2001 From: Thomas Hoppe Date: Fri, 6 Oct 2023 08:14:02 +0200 Subject: [PATCH] feat: node 20.8, remove docker based health checks --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index c11d6ca..346b213 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ### Base -FROM node:18.14.0-alpine as base +FROM node:20.8.0-alpine3.18 as base ENV NO_UPDATE_NOTIFIER=true RUN apk add --no-cache git @@ -35,9 +35,6 @@ COPY --from=build $APP_HOME/lib $APP_HOME/lib EXPOSE 50051 USER root -RUN GRPC_HEALTH_PROBE_VERSION=v0.3.3 && \ - wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \ - chmod +x /bin/grpc_health_probe USER node HEALTHCHECK CMD ["/bin/grpc_health_probe", "-addr=:50051"]