We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0144ed commit a1a1a8cCopy full SHA for a1a1a8c
Dockerfile
@@ -1,5 +1,5 @@
1
### Base
2
-FROM node:14.15.5-alpine as base
+FROM node:20.8.0-alpine3.18 as base
3
ENV NO_UPDATE_NOTIFIER=true
4
5
RUN apk add --no-cache git
@@ -33,9 +33,6 @@ COPY --chown=node:node --from=build $APP_HOME/lib $APP_HOME/lib
33
EXPOSE 50051
34
35
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
39
USER node
40
41
HEALTHCHECK CMD ["/bin/grpc_health_probe", "-addr=:50051"]
0 commit comments