Skip to content

Commit 4f626c8

Browse files
authored
Merge pull request #16 from IGNF/gdal-in-docker-img
Gdal in docker image + bump to 1.2.1
2 parents 280a26e + dbbe678 commit 4f626c8

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
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

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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
1212
FROM debian:bullseye-slim
1313

14-
# install PDAL + mamba environment
14+
# install PDAL
1515
COPY --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
1619
COPY --from=mamba_pdal /opt/conda/envs/patchwork/bin/python /opt/conda/envs/patchwork/bin/python
1720
COPY --from=mamba_pdal /opt/conda/envs/patchwork/lib/ /opt/conda/envs/patchwork/lib/
1821
COPY --from=mamba_pdal /opt/conda/envs/patchwork/ssl /opt/conda/envs/patchwork/ssl

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.2.0"
1+
__version__ = "1.2.1"
22

33
if __name__ == "__main__":
44
print(__version__)

0 commit comments

Comments
 (0)