We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 303323c commit a578578Copy full SHA for a578578
docker/Dockerfile_reos
@@ -1,14 +1,16 @@
1
FROM vcloarec/reos_dependencies
2
LABEL maintainer="[email protected]"
3
4
-RUN mkdir reos
5
-COPY build_reos.sh /reos/
6
-RUN chmod +x /reos/build_reos.sh
+ENV REOS_DIR="/reos"
+
+RUN mkdir ${REOS_DIR}
7
+COPY build_reos.sh ${REOS_DIR}/
8
+RUN chmod +x ${REOS_DIR}/build_reos.sh
9
10
RUN export QGIS_INSTALL=/qgis \
11
&& export QGIS_APP_SRC=/qgis/app_src \
12
&& export MDAL_INSTALL=/mdal \
13
&& export GMSH_INSTALL=/gmsh \
14
&& export HEC_DSS_INSTALL=/hecdss \
- && cd reos && ./build_reos.sh
15
+ && cd ${REOS_DIR} && ./build_reos.sh
16
0 commit comments