From d75aa0ddbd82222acf2cd2706a553d28a52d1e14 Mon Sep 17 00:00:00 2001 From: Francesco Bartoli Date: Thu, 22 Jul 2021 17:14:52 +0200 Subject: [PATCH] Update Dockerfile (#738) --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0776c47..0354292 100644 --- a/Dockerfile +++ b/Dockerfile @@ -90,6 +90,8 @@ RUN \ && cd /pygeoapi \ # Optionally add development/test/doc packages && if [ "$BUILD_DEV_IMAGE" = "true" ] ; then pip3 install -r requirements-dev.txt; fi \ + # Temporary fix for elasticsearch-dsl module not available as deb package in bionic + && pip3 install elasticsearch-dsl \ && pip3 install -e . \ # OGC schemas local setup && mkdir /schemas.opengis.net \