ials/earth
0
1FROM jupyter/base-notebook:latest2 3RUN mamba install -c conda-forge leafmap geopandas localtileserver -y && \4 fix-permissions "${CONDA_DIR}" && \5 fix-permissions "/home/${NB_USER}"6 7COPY requirements.txt .8RUN pip install -r requirements.txt9 10RUN mkdir ./pages11COPY /pages ./pages12 13ENV PROJ_LIB='/opt/conda/share/proj'14 15USER root16RUN chown -R ${NB_UID} ${HOME}17USER ${NB_USER}18 19EXPOSE 876520 21CMD ["solara", "run", "./pages", "--host=0.0.0.0"]22 