[VAL-93] Fix docker binary execution error 68/2168/1
authorAlexandru Antone <Alexandru.Antone@enea.com>
Thu, 19 Dec 2019 15:17:10 +0000 (17:17 +0200)
committerAlexandru Antone <Alexandru.Antone@enea.com>
Thu, 19 Dec 2019 15:22:50 +0000 (17:22 +0200)
The docker image was missing libpthread.so.0 required by
the docker binary.
Fixed by adding libc6-compat.

Signed-off-by: Alexandru Antone <Alexandru.Antone@enea.com>
Change-Id: I50f583bb71ee27b08cfc8af6f175b8671b2d8361

bluval/Dockerfile

index cf37c9f..6a49c2f 100644 (file)
@@ -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 \