From 4cf2fa59acf782944b77cb3b8ae3bcf843ea11bd Mon Sep 17 00:00:00 2001 From: "mathieu.brunot" Date: Sun, 17 Feb 2019 16:47:40 +0100 Subject: [PATCH] :bug: Add missing libc6-compat --- backend/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/Dockerfile b/backend/Dockerfile index 4d213c27d7..4917e81c96 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -38,6 +38,9 @@ ENV UXBOX_HTTP_SERVER_DEBUG=false \ UXBOX_SECRET="" RUN set -ex; \ + apk add --no-cache \ + libc6-compat \ + ; \ chmod 755 /entrypoint.sh; \ mkdir -p /srv/uxbox/resources/public/media; \ mkdir -p /srv/uxbox/resources/public/static;