File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## 1.2.1
4+ - Ajout de gdal dans l'image docker (fichiers manquant pour l'utiliser en ligne de commande)
5+
36## 1.2.0
47- mise à jour de laspy pour le correctif de la fonction ` append_points `
58- Possibilité d'utiliser des points de montage pour rediriger les chemins donnés dans le shapefile vers un autre dossier
Original file line number Diff line number Diff line change @@ -11,8 +11,11 @@ RUN micromamba env create -n patchwork -f /environment.yml
1111# Start from raw debian image to lower the final image size
1212FROM debian:bullseye-slim
1313
14- # install PDAL + mamba environment
14+ # install PDAL
1515COPY --from=mamba_pdal /opt/conda/envs/patchwork/bin/pdal /opt/conda/envs/patchwork/bin/pdal
16+ # install GDAL
17+ COPY --from=mamba_pdal /opt/conda/envs/patchwork/bin/*gdal* /opt/conda/envs/patchwork/bin/
18+ # install mamba environment
1619COPY --from=mamba_pdal /opt/conda/envs/patchwork/bin/python /opt/conda/envs/patchwork/bin/python
1720COPY --from=mamba_pdal /opt/conda/envs/patchwork/lib/ /opt/conda/envs/patchwork/lib/
1821COPY --from=mamba_pdal /opt/conda/envs/patchwork/ssl /opt/conda/envs/patchwork/ssl
Original file line number Diff line number Diff line change 1- __version__ = "1.2.0 "
1+ __version__ = "1.2.1 "
22
33if __name__ == "__main__" :
44 print (__version__ )
You can’t perform that action at this time.
0 commit comments