From feb810ab27bf459a54a3e2055e7c399ed478f1f5 Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Mon, 11 Nov 2019 08:53:11 +0100 Subject: [PATCH] Fix #179 'libc not found' Gunicorn version 20 crashes in this docker image. So for now use a version <20. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fd42274..7ee1216 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ WORKDIR /install RUN pip install --prefix="/install" --no-warn-script-location \ # gunicorn is used for launching netbox - gunicorn \ + 'gunicorn<20.0.0' \ greenlet \ eventlet \ # napalm is used for gathering information from network devices