From 4f99c8d1da7a89384138c0f4ebf6ef8bb8f4aba6 Mon Sep 17 00:00:00 2001 From: Alexandru Antone Date: Thu, 19 Dec 2019 17:17:10 +0200 Subject: [PATCH] [VAL-93] Fix docker binary execution error The docker image was missing libpthread.so.0 required by the docker binary. Fixed by adding libc6-compat. Signed-off-by: Alexandru Antone Change-Id: I50f583bb71ee27b08cfc8af6f175b8671b2d8361 --- bluval/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/bluval/Dockerfile b/bluval/Dockerfile index cf37c9f..6a49c2f 100644 --- a/bluval/Dockerfile +++ b/bluval/Dockerfile @@ -20,6 +20,7 @@ FROM python:3.6-alpine3.9 RUN apk --no-cache add --update \ gcc \ git \ + libc6-compat \ libc-dev \ libffi \ libffi-dev \ -- 2.16.6