# Usa la imagen actual como base FROM ipsgeoprocesing:1.0.0 # Establecer el directorio de trabajo dentro del contenedor WORKDIR / # Copiar el nuevo entrypoint.sh COPY ./entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh # Instalar los paquetes nuevos de Python RUN pip install schedule && pip install owslib && pip install pyproj && pip install pycatastro && pip install chardet && pip install geopandas && pip install plotly && pip install turfpy && pip install duckdb && pip install laspy && pip install laszip && pip install pylas && pip install lazrs && pip install --upgrade laz pylas && pip install git+https://github.com/juanmcasillas/gopro2gpx && pip install psutil && pip install gdal2tiles && pip install pystac_client odc-stac && pip install geoserver-rest && pip install fused odc-stac duckdb numba xarray-spatial planetary-computer 'odc-stac[botocore]' py3dep stackstac pynhd boto3 && pip install pydeck && pip install geopy && pip install pandas fastparquet && pip install streetview # Definir el entrypoint ENTRYPOINT ["/entrypoint.sh"] CMD ["python","--version"]