We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a578578 commit b09f711Copy full SHA for b09f711
docker/Dockerfile_reos
@@ -6,6 +6,8 @@ ENV REOS_DIR="/reos"
6
RUN mkdir ${REOS_DIR}
7
COPY build_reos.sh ${REOS_DIR}/
8
RUN chmod +x ${REOS_DIR}/build_reos.sh
9
+COPY pyReos_interpreter.sh /
10
+RUN chmod +x /pyReos_interpreter.sh
11
12
RUN export QGIS_INSTALL=/qgis \
13
&& export QGIS_APP_SRC=/qgis/app_src \
docker/pyReos_interpreter.sh
@@ -0,0 +1,6 @@
1
+export LD_LIBRARY_PATH=$REOS_DIR/lib:/usr/lib/x86_64-linux-gnu/:$GMSH_DIR/lib/:$QGIS_DIR/lib/:$MDAL_DIR/lib/
2
+export PYTHONPATH="$REOS_DIR/python/":$PYTHONPATH
3
+export QGIS_PREFIX_PATH=$QGIS_DIR
4
+export REOS_PREFIX_PATH=$REOS_DIR
5
+
+python3
0 commit comments