From 5553b03244509e22eb450d4c72c9097cad0ece1f Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Thu, 2 Sep 2021 01:17:43 -0400 Subject: [PATCH] cd before extracting proj --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8c70affd..44ffc683 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN apt-get -qq update && apt-get -qq install -y --no-install-recommends python3 RUN update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1 && update-alternatives --install /usr/bin/python python /usr/bin/python3.8 2 # Force usage of proj.db version 6 -RUN rm -fr /usr/share/proj && mkdir /usr/share/proj && wget --no-check-certificate https://github.com/OpenDroneMap/WebODM/releases/download/v1.9.2/proj-data_6.3.1-1.tar.xz -O - | tar -Jx +RUN rm -fr /usr/share/proj && mkdir /usr/share/proj && cd /usr/share/proj && wget --no-check-certificate https://github.com/OpenDroneMap/WebODM/releases/download/v1.9.2/proj-data_6.3.1-1.tar.xz -O - | tar -Jx # Install pip reqs ADD requirements.txt /webodm/