Skip to content

Commit a1a1a8c

Browse files
committed
feat: node 20.8, remove docker based health checks
1 parent f0144ed commit a1a1a8c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Dockerfile

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### Base
2-
FROM node:14.15.5-alpine as base
2+
FROM node:20.8.0-alpine3.18 as base
33
ENV NO_UPDATE_NOTIFIER=true
44

55
RUN apk add --no-cache git
@@ -33,9 +33,6 @@ COPY --chown=node:node --from=build $APP_HOME/lib $APP_HOME/lib
3333
EXPOSE 50051
3434

3535
USER root
36-
RUN GRPC_HEALTH_PROBE_VERSION=v0.3.3 && \
37-
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 && \
38-
chmod +x /bin/grpc_health_probe
3936
USER node
4037

4138
HEALTHCHECK CMD ["/bin/grpc_health_probe", "-addr=:50051"]

0 commit comments

Comments
 (0)