From 52a9d346f651f51b121d716fe8ec5f9efa39dbfe Mon Sep 17 00:00:00 2001 From: Romain Vrignaud Date: Mon, 29 Oct 2018 17:57:43 +0100 Subject: [PATCH] Adservice: Add libc6-compat runtime dependency (#90) Fixes #89 --- src/adservice/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/adservice/Dockerfile b/src/adservice/Dockerfile index 7b41366..f6810c8 100644 --- a/src/adservice/Dockerfile +++ b/src/adservice/Dockerfile @@ -11,6 +11,8 @@ RUN ./gradlew installDist FROM openjdk:8-alpine +RUN apk add --no-cache libc6-compat + RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \ 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